From 0bc742d7a2039d72fe6ce14a44593490454a9798 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Wed, 8 Jun 2022 16:27:04 +0200 Subject: [PATCH] (cargo-release) version {{version}} --- implementations/rust/preserves-path/Cargo.toml | 8 ++++---- implementations/rust/preserves-schema/Cargo.toml | 4 ++-- implementations/rust/preserves-tools/Cargo.toml | 8 ++++---- implementations/rust/preserves/Cargo.toml | 2 +- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/implementations/rust/preserves-path/Cargo.toml b/implementations/rust/preserves-path/Cargo.toml index f6df05c..a25088c 100644 --- a/implementations/rust/preserves-path/Cargo.toml +++ b/implementations/rust/preserves-path/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "preserves-path" -version = "3.1.0" +version = "3.2.0" authors = ["Tony Garnock-Jones "] edition = "2018" description = "Implementation of preserves-path, a query language for Preserves documents." @@ -9,11 +9,11 @@ repository = "https://gitlab.com/preserves/preserves" license = "Apache-2.0" [build-dependencies] -preserves-schema = { path = "../preserves-schema", version = "^2.4.0"} +preserves-schema = { path = "../preserves-schema", version = "^2.5.0"} [dependencies] -preserves = { path = "../preserves", version = "^2.3.0"} -preserves-schema = { path = "../preserves-schema", version = "^2.4.0"} +preserves = { path = "../preserves", version = "^2.4.0"} +preserves-schema = { path = "../preserves-schema", version = "^2.5.0"} num = "0.4" regex = "1.5" diff --git a/implementations/rust/preserves-schema/Cargo.toml b/implementations/rust/preserves-schema/Cargo.toml index 905a903..6268eeb 100644 --- a/implementations/rust/preserves-schema/Cargo.toml +++ b/implementations/rust/preserves-schema/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "preserves-schema" -version = "2.4.0" +version = "2.5.0" authors = ["Tony Garnock-Jones "] edition = "2018" description = "Implementation of Preserves Schema code generation and support for Rust." @@ -9,7 +9,7 @@ repository = "https://gitlab.com/preserves/preserves" license = "Apache-2.0" [dependencies] -preserves = { path = "../preserves", version = "^2.3.0"} +preserves = { path = "../preserves", version = "^2.4.0"} convert_case = "0.4.0" glob = "0.3.0" diff --git a/implementations/rust/preserves-tools/Cargo.toml b/implementations/rust/preserves-tools/Cargo.toml index 749fa11..86b683f 100644 --- a/implementations/rust/preserves-tools/Cargo.toml +++ b/implementations/rust/preserves-tools/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "preserves-tools" -version = "2.4.0" +version = "2.5.0" authors = ["Tony Garnock-Jones "] edition = "2018" description = "Command-line utilities for working with Preserves documents." @@ -9,9 +9,9 @@ repository = "https://gitlab.com/preserves/preserves" license = "Apache-2.0" [dependencies] -preserves = { path = "../preserves", version = "^2.3.0"} -preserves-path = { path = "../preserves-path", version = "^3.1.0"} -preserves-schema = { path = "../preserves-schema", version = "^2.4.0"} +preserves = { path = "../preserves", version = "^2.4.0"} +preserves-path = { path = "../preserves-path", version = "^3.2.0"} +preserves-schema = { path = "../preserves-schema", version = "^2.5.0"} bytes = "1.0" clap = "=3.0.0-beta.2" diff --git a/implementations/rust/preserves/Cargo.toml b/implementations/rust/preserves/Cargo.toml index 4ff8644..ca0e0c9 100644 --- a/implementations/rust/preserves/Cargo.toml +++ b/implementations/rust/preserves/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "preserves" -version = "2.3.0" +version = "2.4.0" authors = ["Tony Garnock-Jones "] edition = "2018" description = "Implementation of the Preserves serialization format via serde."