From 929346f24ce732f94dadcf467ff6fef3ba0cbe06 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Tue, 9 Jul 2024 06:59:53 -0400 Subject: [PATCH] chore: Prepare `0.7.0` release (#130) --- pbjson-build/Cargo.toml | 2 +- pbjson-test/Cargo.toml | 2 +- pbjson-types/Cargo.toml | 6 +++--- pbjson/Cargo.toml | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/pbjson-build/Cargo.toml b/pbjson-build/Cargo.toml index c9bd279..3715900 100644 --- a/pbjson-build/Cargo.toml +++ b/pbjson-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson-build" -version = "0.6.2" +version = "0.7.0" authors = ["Raphael Taylor-Davies "] edition = "2021" description = "Generates Serialize and Deserialize implementations for prost message types" diff --git a/pbjson-test/Cargo.toml b/pbjson-test/Cargo.toml index 8d70562..bbb0951 100644 --- a/pbjson-test/Cargo.toml +++ b/pbjson-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson-test" -version = "0.6.0" +version = "0.7.0" authors = ["Raphael Taylor-Davies "] edition = "2021" description = "Test resources for pbjson converion" diff --git a/pbjson-types/Cargo.toml b/pbjson-types/Cargo.toml index 54ef3e1..c0c0896 100644 --- a/pbjson-types/Cargo.toml +++ b/pbjson-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson-types" -version = "0.6.0" +version = "0.7.0" authors = ["Raphael Taylor-Davies "] description = "Protobuf well known types with serde serialization support" edition = "2021" @@ -13,7 +13,7 @@ exclude = ["protos/*"] [dependencies] # In alphabetical order bytes = "1.0" chrono = { version = "0.4", default-features = false, features = ["alloc"] } -pbjson = { path = "../pbjson", version = "0.6" } +pbjson = { path = "../pbjson", version = "0.7" } prost = "0.13" serde = { version = "1.0", features = ["derive"] } @@ -22,4 +22,4 @@ serde_json = "1.0" [build-dependencies] # In alphabetical order prost-build = "0.13" -pbjson-build = { path = "../pbjson-build", version = "0.6" } +pbjson-build = { path = "../pbjson-build", version = "0.7" } diff --git a/pbjson/Cargo.toml b/pbjson/Cargo.toml index 95eb06d..2c35e10 100644 --- a/pbjson/Cargo.toml +++ b/pbjson/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson" -version = "0.6.0" +version = "0.7.0" authors = ["Raphael Taylor-Davies "] edition = "2021" description = "Utilities for pbjson conversion"