Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: prepare 0.5 release #70

Merged
merged 1 commit into from
Sep 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pbjson-build/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbjson-build"
version = "0.4.0"
version = "0.5.0"
authors = ["Raphael Taylor-Davies <[email protected]>"]
edition = "2021"
description = "Generates Serialize and Deserialize implementations for prost message types"
Expand Down
2 changes: 1 addition & 1 deletion pbjson-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbjson-test"
version = "0.4.0"
version = "0.5.0"
authors = ["Raphael Taylor-Davies <[email protected]>"]
edition = "2021"
description = "Test resources for pbjson converion"
Expand Down
6 changes: 3 additions & 3 deletions pbjson-types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbjson-types"
version = "0.4.0"
version = "0.5.0"
authors = ["Raphael Taylor-Davies <[email protected]>"]
description = "Protobuf well known types with serde serialization support"
edition = "2021"
Expand All @@ -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"] }

Expand All @@ -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" }
2 changes: 1 addition & 1 deletion pbjson/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pbjson"
version = "0.4.0"
version = "0.5.0"
authors = ["Raphael Taylor-Davies <[email protected]>"]
edition = "2021"
description = "Utilities for pbjson conversion"
Expand Down