From bc9cd5f8f56f4833a84fc19943e4493d95514ac3 Mon Sep 17 00:00:00 2001 From: Raphael Taylor-Davies Date: Tue, 20 Sep 2022 17:46:34 +0100 Subject: [PATCH] chore: prepare 0.5 release --- 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 d774877..b16d13b 100644 --- a/pbjson-build/Cargo.toml +++ b/pbjson-build/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson-build" -version = "0.4.0" +version = "0.5.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 f966489..e5d59cd 100644 --- a/pbjson-test/Cargo.toml +++ b/pbjson-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson-test" -version = "0.4.0" +version = "0.5.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 6811d66..60ce042 100644 --- a/pbjson-types/Cargo.toml +++ b/pbjson-types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson-types" -version = "0.4.0" +version = "0.5.0" authors = ["Raphael Taylor-Davies "] description = "Protobuf well known types with serde serialization support" edition = "2021" @@ -12,7 +12,7 @@ repository = "https://github.com/influxdata/pbjson" [dependencies] # In alphabetical order bytes = "1.0" chrono = { version = "0.4", default-features = false, features = ["alloc"] } -pbjson = { path = "../pbjson", version = "0.4" } +pbjson = { path = "../pbjson", version = "0.5" } prost = "0.11" serde = { version = "1.0", features = ["derive"] } @@ -21,4 +21,4 @@ serde_json = "1.0" [build-dependencies] # In alphabetical order prost-build = "0.11" -pbjson-build = { path = "../pbjson-build", version = "0.4" } +pbjson-build = { path = "../pbjson-build", version = "0.5" } diff --git a/pbjson/Cargo.toml b/pbjson/Cargo.toml index 9d21982..39f8c7b 100644 --- a/pbjson/Cargo.toml +++ b/pbjson/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pbjson" -version = "0.4.0" +version = "0.5.0" authors = ["Raphael Taylor-Davies "] edition = "2021" description = "Utilities for pbjson conversion"