From 670b63083457783eb10034a32ce8e6b7c5dc1799 Mon Sep 17 00:00:00 2001 From: Davy Duperron Date: Fri, 6 Dec 2024 16:12:39 +0100 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 ac7951d..a12d245 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -383,7 +383,7 @@ checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674" [[package]] name = "jql" -version = "8.0.1" +version = "8.0.2" dependencies = [ "anyhow", "clap", @@ -397,7 +397,7 @@ dependencies = [ [[package]] name = "jql-parser" -version = "8.0.1" +version = "8.0.2" dependencies = [ "thiserror", "winnow", @@ -405,7 +405,7 @@ dependencies = [ [[package]] name = "jql-runner" -version = "8.0.1" +version = "8.0.2" dependencies = [ "criterion", "indexmap", diff --git a/Cargo.toml b/Cargo.toml index 21ca283..c5958a4 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 = "8.0.1" +version = "8.0.2" [workspace.lints.rust] missing_debug_implementations = "warn" diff --git a/crates/jql-runner/Cargo.toml b/crates/jql-runner/Cargo.toml index 7fbb7f8..6e3fab6 100644 --- a/crates/jql-runner/Cargo.toml +++ b/crates/jql-runner/Cargo.toml @@ -12,7 +12,7 @@ version.workspace = true [dependencies] indexmap = { version = "2.7.0", features = ["rayon"] } -jql-parser = { path = "../jql-parser", version = "8.0.1" } +jql-parser = { path = "../jql-parser", version = "8.0.2" } rayon = "1.10.0" serde_json.workspace = true thiserror.workspace = true diff --git a/crates/jql/Cargo.toml b/crates/jql/Cargo.toml index 35cfc8c..4786e01 100644 --- a/crates/jql/Cargo.toml +++ b/crates/jql/Cargo.toml @@ -14,7 +14,7 @@ version.workspace = true anyhow = "1.0.94" clap = { version = "4.5.23", features = ["derive"] } colored_json = { version = "5.0.0" } -jql-runner = { path = "../jql-runner", version = "8.0.1" } +jql-runner = { path = "../jql-runner", version = "8.0.2" } serde = "1.0.215" serde_stacker = "0.1.11" serde_json.workspace = true