From 4749dd210eb974d6b940cf7716fe6057ba18b7fd Mon Sep 17 00:00:00 2001 From: Davy Duperron Date: Mon, 2 Oct 2023 13:09:22 +0200 Subject: [PATCH] chore: Release --- Cargo.lock | 6 +++--- Cargo.toml | 2 +- crates/jql-runner/Cargo.toml | 2 +- crates/jql/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 74debbf..f3706d1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -389,7 +389,7 @@ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" [[package]] name = "jql" -version = "7.0.3" +version = "7.0.4" dependencies = [ "anyhow", "clap", @@ -403,7 +403,7 @@ dependencies = [ [[package]] name = "jql-parser" -version = "7.0.3" +version = "7.0.4" dependencies = [ "nom", "thiserror", @@ -411,7 +411,7 @@ dependencies = [ [[package]] name = "jql-runner" -version = "7.0.3" +version = "7.0.4" dependencies = [ "criterion", "jql-parser", diff --git a/Cargo.toml b/Cargo.toml index 783600a..f0ec953 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.3" +version = "7.0.4" # 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 586319d..f734bdc 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.3" } +jql-parser = { path = "../jql-parser", version = "7.0.4" } rayon = "1.8.0" serde_json = { workspace = true } thiserror = { workspace = true } diff --git a/crates/jql/Cargo.toml b/crates/jql/Cargo.toml index 5f22bb1..655ba32 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.6", features = ["derive"] } colored_json = { version = "3.2.0" } -jql-runner = { path = "../jql-runner", version = "7.0.3" } +jql-runner = { path = "../jql-runner", version = "7.0.4" } serde = "1.0.188" serde_stacker = "0.1.10" serde_json = { workspace = true }