From 094ff79e083bb9a33c9d25e731cfb996c4a11387 Mon Sep 17 00:00:00 2001 From: Trevor Hilton Date: Sun, 3 Nov 2024 14:53:10 -0500 Subject: [PATCH] chore: bump versions for release --- serde_json_path/Cargo.toml | 6 +++--- serde_json_path_core/Cargo.toml | 2 +- serde_json_path_macros/Cargo.toml | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/serde_json_path/Cargo.toml b/serde_json_path/Cargo.toml index efc966e..77b3dc3 100644 --- a/serde_json_path/Cargo.toml +++ b/serde_json_path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path" -version = "0.6.7" +version = "0.7.0" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -23,8 +23,8 @@ once_cell = { version = "1.17.1" } regex = { version="1.7.1", optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.6" } -serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.4" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.2.0" } +serde_json_path_macros = { path = "../serde_json_path_macros", version = "0.1.5" } thiserror = "1.0" tracing = { version = "0.1", optional = true } diff --git a/serde_json_path_core/Cargo.toml b/serde_json_path_core/Cargo.toml index 4fc904e..16dad94 100644 --- a/serde_json_path_core/Cargo.toml +++ b/serde_json_path_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path_core" -version = "0.1.6" +version = "0.2.0" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] diff --git a/serde_json_path_macros/Cargo.toml b/serde_json_path_macros/Cargo.toml index db29a74..780b215 100644 --- a/serde_json_path_macros/Cargo.toml +++ b/serde_json_path_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_json_path_macros" -version = "0.1.4" +version = "0.1.5" edition = "2021" license = "MIT" authors = ["Trevor Hilton "] @@ -13,7 +13,7 @@ keywords = ["json", "jsonpath", "json_path", "serde", "serde_json"] [dependencies] serde_json_path_macros_internal = { path = "src/internal", version = "0.1.1" } -serde_json_path_core = { path = "../serde_json_path_core", version = "0.1.6" } +serde_json_path_core = { path = "../serde_json_path_core", version = "0.2.0" } inventory = "0.3" once_cell = "1"