Skip to content

Commit

Permalink
Do not print debug on compile. Releases 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
vrcca committed May 5, 2023
1 parent bfc6616 commit 7161ce4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/parser.ex
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ defmodule JsonPathAccess.Parser do
ignore(root)
|> concat(repeat(choice([dot_selector, wildcard_selector, list_selector])))

defparsec(:parse, json_path, debug: true)
defparsec(:parse, json_path, debug: false)

defp all(_rest, _args = [], context, _line, _offset) do
{[Access.all()], context}
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule JsonPathAccess.MixProject do
def project do
[
app: :json_path_access,
version: "0.1.0",
version: "0.1.1",
elixir: "~> 1.13",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down

0 comments on commit 7161ce4

Please sign in to comment.