-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #70 from influxdata/prepare-0.5
chore: prepare 0.5 release
- Loading branch information
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|