diff --git a/Cargo.lock b/Cargo.lock index 62b984d..74d9398 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -390,7 +390,7 @@ checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" [[package]] name = "jql" -version = "7.0.5" +version = "7.0.6" dependencies = [ "anyhow", "clap", @@ -404,7 +404,7 @@ dependencies = [ [[package]] name = "jql-parser" -version = "7.0.5" +version = "7.0.6" dependencies = [ "nom", "thiserror", @@ -412,7 +412,7 @@ dependencies = [ [[package]] name = "jql-runner" -version = "7.0.5" +version = "7.0.6" dependencies = [ "criterion", "jql-parser", diff --git a/Cargo.toml b/Cargo.toml index 51a82f6..42ca1bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ keywords = ["cli", "json", "terminal", "tool", "query"] license = "MIT OR Apache-2.0" readme = "README.md" repository = "https://github.com/yamafaktory/jql" -version = "7.0.5" +version = "7.0.6" # https://github.com/rust-lang/cargo/issues/8264 [profile.release] diff --git a/crates/jql-runner/Cargo.toml b/crates/jql-runner/Cargo.toml index d79be20..62bf68f 100644 --- a/crates/jql-runner/Cargo.toml +++ b/crates/jql-runner/Cargo.toml @@ -11,7 +11,7 @@ repository = { workspace = true } version = { workspace = true } [dependencies] -jql-parser = { path = "../jql-parser", version = "7.0.5" } +jql-parser = { path = "../jql-parser", version = "7.0.6" } rayon = "1.8.0" serde_json = { workspace = true } thiserror = { workspace = true } diff --git a/crates/jql/Cargo.toml b/crates/jql/Cargo.toml index aca4f04..f08ed89 100644 --- a/crates/jql/Cargo.toml +++ b/crates/jql/Cargo.toml @@ -14,7 +14,7 @@ version = { workspace = true } anyhow = "1.0.75" clap = { version = "4.4.7", features = ["derive"] } colored_json = { version = "4.0.0" } -jql-runner = { path = "../jql-runner", version = "7.0.5" } +jql-runner = { path = "../jql-runner", version = "7.0.6" } serde = "1.0.190" serde_stacker = "0.1.10" serde_json = { workspace = true }