diff --git a/Cargo.lock b/Cargo.lock index 6300fab..57387d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -383,7 +383,7 @@ checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b" [[package]] name = "jql" -version = "7.2.0" +version = "8.0.0" dependencies = [ "anyhow", "clap", @@ -397,7 +397,7 @@ dependencies = [ [[package]] name = "jql-parser" -version = "7.2.0" +version = "8.0.0" dependencies = [ "thiserror", "winnow", @@ -405,7 +405,7 @@ dependencies = [ [[package]] name = "jql-runner" -version = "7.2.0" +version = "8.0.0" dependencies = [ "criterion", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 8723715..551a647 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.2.0" +version = "8.0.0" [workspace.lints.rust] missing_debug_implementations = "warn" diff --git a/crates/jql-runner/Cargo.toml b/crates/jql-runner/Cargo.toml index 7db1d21..00f61e2 100644 --- a/crates/jql-runner/Cargo.toml +++ b/crates/jql-runner/Cargo.toml @@ -12,7 +12,7 @@ version.workspace = true [dependencies] indexmap = { version = "2.6.0", features = ["rayon"] } -jql-parser = { path = "../jql-parser", version = "7.2.0" } +jql-parser = { path = "../jql-parser", version = "8.0.0" } rayon = "1.10.0" serde_json.workspace = true thiserror.workspace = true diff --git a/crates/jql/Cargo.toml b/crates/jql/Cargo.toml index a0618f1..b12639e 100644 --- a/crates/jql/Cargo.toml +++ b/crates/jql/Cargo.toml @@ -14,7 +14,7 @@ version.workspace = true anyhow = "1.0.91" clap = { version = "4.5.20", features = ["derive"] } colored_json = { version = "5.0.0" } -jql-runner = { path = "../jql-runner", version = "7.2.0" } +jql-runner = { path = "../jql-runner", version = "8.0.0" } serde = "1.0.213" serde_stacker = "0.1.11" serde_json.workspace = true