Skip to content

Commit 6698c7c

Browse files
authored
Bump versions to 0.0.14 (#154)
1 parent f0d4eb6 commit 6698c7c

14 files changed

Lines changed: 22 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Unreleased
22
... everything has been released!
33

4+
# 0.0.14
5+
## Oct 27, 2023
6+
* Implement box_it for oneof fields (#150)
7+
* Use r# syntax for keywords instead of appending _ (#153)
8+
* This is a breaking change. Fields with names like `type` used to be generated as `type_`.
9+
Now, you should refer to them using a raw identifier: `r#type`.
10+
411
# 0.0.13
512
## Oct 12, 2023
6-
* Add `rustdoc::` prefix to `#[allow(broken_intra_doc_links)]` (#148)
13+
* Add `rustdoc::` prefix to `#[allow(broken_intra_doc_links)]` (#148)
714

815
# 0.0.12
916
### May 9, 2023

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ There are only two crates you'll need if you want to use this with you project `
6262
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.
6363
```
6464
[dependencies]
65-
pb-jelly = "0.0.13"
65+
pb-jelly = "0.0.14"
6666
```
6767

6868
##### `pb-jelly-gen`
@@ -75,7 +75,7 @@ You'll need to add a generation crate (see `examples_gen` for an example)
7575
Include `pb-jelly-gen` as a dependency of your generation crate, and `cargo run` to invoke protoc for you.
7676
```
7777
[dependencies]
78-
pb-jelly-gen = "0.0.13"
78+
pb-jelly-gen = "0.0.14"
7979
```
8080

8181
Eventually, we hope to eliminate the need for a generation crate, and simply have generation occur

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publish = false
1010
[dependencies]
1111
bytes = "1.0"
1212
compact_str = "0.5"
13-
pb-jelly = "0.0.13"
13+
pb-jelly = "0.0.14"
1414
proto_box_it = { path = "gen/rust/proto/proto_box_it" }
1515
proto_custom_type = { path = "gen/rust/proto/proto_custom_type" }
1616
proto_linked_list = { path = "gen/rust/proto/proto_linked_list" }

examples/examples_gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ edition = "2018"
66
publish = false
77

88
[dependencies]
9-
#pb-jelly-gen = "0.0.13" # If copying this example - use this
9+
#pb-jelly-gen = "0.0.14" # If copying this example - use this
1010
pb-jelly-gen = { path = "../../pb-jelly-gen" }

pb-jelly-gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pb-jelly-gen"
33
description = "A protobuf binding generation framework for the Rust language developed at Dropbox"
4-
version = "0.0.13"
4+
version = "0.0.14"
55
authors = ["Rajat Goel <rajat@dropbox.com>", "Nipunn Koorapati <nipunn@dropbox.com>", "Parker Timmerman <parkertimmerman@dropbox.com>"]
66
edition = "2018"
77
license = "Apache-2.0"

pb-jelly-gen/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Once you've completed the above steps, you should include this crate as a build-
1818
##### `Cargo.toml`
1919
```
2020
[build-dependencies]
21-
pb-jelly-gen = "0.0.13"
21+
pb-jelly-gen = "0.0.14"
2222
```
2323

2424
##### `build.rs`

pb-jelly-gen/codegen/codegen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1888,7 +1888,7 @@ def get_cargo_toml_file(
18881888

18891889
versions = {
18901890
"lazy_static": ' version = "1.4.0" ',
1891-
"pb-jelly": ' version = "0.0.13" ',
1891+
"pb-jelly": ' version = "0.0.14" ',
18921892
"serde": ' version = "1.0" ',
18931893
"bytes": ' version = "1.0" ',
18941894
"compact_str": ' version = "0.5" ',

pb-jelly-gen/codegen/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pb-jelly"
3-
version = "0.0.13"
3+
version = "0.0.14"
44

55
[build-system]
66
requires = [

pb-jelly/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pb-jelly"
33
description = "A protobuf runtime for the Rust language developed at Dropbox"
4-
version = "0.0.13"
4+
version = "0.0.14"
55
authors = ["Rajat Goel <rajat@dropbox.com>", "Nipunn Koorapati <nipunn@dropbox.com>", "Parker Timmerman <parkertimmerman@dropbox.com>"]
66
edition = "2018"
77
license = "Apache-2.0"

pb-jelly/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include this crate as a dependency in your `Cargo.toml`.
1010
##### `Cargo.toml`
1111
```
1212
[dependencies]
13-
pb-jelly = "0.0.13"
13+
pb-jelly = "0.0.14"
1414
```
1515

1616
Then in the general case, all you'll need to use in your code is the `Message` trait this crate defines, e.g.

0 commit comments

Comments
 (0)