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

Bump versions to 0.0.16 #161

Merged
merged 1 commit into from
Jan 18, 2024
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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Unreleased
... everything has been released!

# 0.0.16
### Jan 18, 2024
* Replace ctype=CORD with rust.blob extension field (#160)

# 0.0.15
### Dec 14, 2023
* Improve handling of recursive types (#157)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ There are only two crates you'll need if you want to use this with you project `
Contains all of the important traits and structs that power our generated code, e.g. `Message` and `Lazy`. Include this as a `dependency`, e.g.
```
[dependencies]
pb-jelly = "0.0.15"
pb-jelly = "0.0.16"
```

##### `pb-jelly-gen`
Expand All @@ -75,7 +75,7 @@ You'll need to add a generation crate (see `examples_gen` for an example)
Include `pb-jelly-gen` as a dependency of your generation crate, and `cargo run` to invoke protoc for you.
```
[dependencies]
pb-jelly-gen = "0.0.15"
pb-jelly-gen = "0.0.16"
```

Eventually, we hope to eliminate the need for a generation crate, and simply have generation occur
Expand Down
2 changes: 1 addition & 1 deletion examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ publish = false
[dependencies]
bytes = "1.0"
compact_str = "0.5"
pb-jelly = "0.0.15"
pb-jelly = "0.0.16"
proto_box_it = { path = "gen/rust/proto/proto_box_it" }
proto_custom_type = { path = "gen/rust/proto/proto_custom_type" }
proto_linked_list = { path = "gen/rust/proto/proto_linked_list" }
Expand Down
2 changes: 1 addition & 1 deletion examples/examples_gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ edition = "2018"
publish = false

[dependencies]
#pb-jelly-gen = "0.0.15" # If copying this example - use this
#pb-jelly-gen = "0.0.16" # If copying this example - use this
pb-jelly-gen = { path = "../../pb-jelly-gen" }
2 changes: 1 addition & 1 deletion pb-jelly-gen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pb-jelly-gen"
description = "A protobuf binding generation framework for the Rust language developed at Dropbox"
version = "0.0.15"
version = "0.0.16"
authors = ["Rajat Goel <[email protected]>", "Nipunn Koorapati <[email protected]>", "Parker Timmerman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion pb-jelly-gen/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Once you've completed the above steps, you should include this crate as a build-
##### `Cargo.toml`
```
[build-dependencies]
pb-jelly-gen = "0.0.15"
pb-jelly-gen = "0.0.16"
```

##### `build.rs`
Expand Down
2 changes: 1 addition & 1 deletion pb-jelly-gen/codegen/codegen.py
Original file line number Diff line number Diff line change
Expand Up @@ -1991,7 +1991,7 @@ def get_cargo_toml_file(

versions = {
"lazy_static": ' version = "1.4.0" ',
"pb-jelly": ' version = "0.0.15" ',
"pb-jelly": ' version = "0.0.16" ',
"serde": ' version = "1.0" ',
"bytes": ' version = "1.0" ',
"compact_str": ' version = "0.5" ',
Expand Down
2 changes: 1 addition & 1 deletion pb-jelly-gen/codegen/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pb-jelly"
version = "0.0.15"
version = "0.0.16"
description = "Generate rust bindings from protobuf specs"
keywords = ["rust", "proto", "dropbox"]
license = { text = "Apache License 2.0" }
Expand Down
2 changes: 1 addition & 1 deletion pb-jelly/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pb-jelly"
description = "A protobuf runtime for the Rust language developed at Dropbox"
version = "0.0.15"
version = "0.0.16"
authors = ["Rajat Goel <[email protected]>", "Nipunn Koorapati <[email protected]>", "Parker Timmerman <[email protected]>"]
edition = "2018"
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion pb-jelly/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ include this crate as a dependency in your `Cargo.toml`.
##### `Cargo.toml`
```
[dependencies]
pb-jelly = "0.0.15"
pb-jelly = "0.0.16"
```

Then in the general case, all you'll need to use in your code is the `Message` trait this crate defines, e.g.
Expand Down
2 changes: 1 addition & 1 deletion pb-test/gen/pb-jelly/proto_google/Cargo.toml.expected
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[dependencies]
compact_str = {features=["bytes"], version = "0.5" }
lazy_static = { version = "1.4.0" }
pb-jelly = { version = "0.0.15" }
pb-jelly = { version = "0.0.16" }
2 changes: 1 addition & 1 deletion pb-test/gen/pb-jelly/proto_nopackage/Cargo.toml.expected
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ edition = "2018"
[dependencies]
compact_str = {features=["bytes"], version = "0.5" }
lazy_static = { version = "1.4.0" }
pb-jelly = { version = "0.0.15" }
pb-jelly = { version = "0.0.16" }
2 changes: 1 addition & 1 deletion pb-test/gen/pb-jelly/proto_pbtest/Cargo.toml.expected
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ edition = "2018"
bytes = { version = "1.0" }
compact_str = {features=["bytes"], version = "0.5" }
lazy_static = { version = "1.4.0" }
pb-jelly = { version = "0.0.15" }
pb-jelly = { version = "0.0.16" }
proto_google = {path = "../proto_google"}
2 changes: 1 addition & 1 deletion pb-test/pb_test_gen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"
publish = false

[dependencies]
#pb-jelly-gen = "0.0.15" # If copying this example - use this
#pb-jelly-gen = "0.0.16" # If copying this example - use this
pb-jelly-gen = { path = "../../pb-jelly-gen" }

# only used when benchmarking PROST!
Expand Down
Loading