Skip to content

Commit 5442991

Browse files
authored
*: bump 0.13.0 (#630)
Signed-off-by: Jay Lee <[email protected]>
1 parent cc5d2ab commit 5442991

File tree

7 files changed

+20
-12
lines changed

7 files changed

+20
-12
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.13.0 - 2023-08-17
2+
3+
- Publicize prost service generator (#612)
4+
- Update grpc to 1.56.2 (#621) (#624) (#629)
5+
- Fix unknown log file and module in slog (#623)
6+
- gate auth context under _secure feature (#622)
7+
- rust-protobuf 3 support (#615)
8+
19
# 0.12.1 - 2023-02-14
210

311
- Provide more debug info for RpcStatus (#603)

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"
@@ -17,7 +17,7 @@ autoexamples = false
1717
all-features = true
1818

1919
[dependencies]
20-
grpcio-sys = { path = "grpc-sys", version = "0.12.1", default-features = false }
20+
grpcio-sys = { path = "grpc-sys", version = "0.13.0", default-features = false }
2121
libc = "0.2"
2222
futures-executor = "0.3"
2323
futures-util = { version = "0.3", default-features = false, features = ["std", "sink"] }
@@ -57,4 +57,4 @@ no-omit-frame-pointer = ["grpcio-sys/no-omit-frame-pointer"]
5757
travis-ci = { repository = "tikv/grpc-rs" }
5858

5959
[patch.crates-io]
60-
grpcio-compiler = { path = "compiler", version = "0.12.1" }
60+
grpcio-compiler = { path = "compiler", version = "0.13.0" }

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ To include this project as a dependency:
8989

9090
```
9191
[dependencies]
92-
grpcio = "0.12"
92+
grpcio = "0.13"
9393
```
9494

9595
### Feature `boringssl`
@@ -99,7 +99,7 @@ mechanism. When you do not need it, for example when working in intranet,
9999
you can disable it by using the following configuration:
100100
```
101101
[dependencies]
102-
grpcio = { version = "0.12", default-features = false, features = ["protobuf-codec"] }
102+
grpcio = { version = "0.13", default-features = false, features = ["protobuf-codec"] }
103103
```
104104

105105
### Feature `prost-codec` and `protobuf-codec`
@@ -119,7 +119,7 @@ your `Cargo.toml`'s features list for `gprcio`, which requires openssl (>=1.0.2)
119119

120120
```toml
121121
[dependencies]
122-
grpcio = { version = "0.12", features = ["openssl"] }
122+
grpcio = { version = "0.13", features = ["openssl"] }
123123
```
124124

125125
Feature `openssl-vendored` is the same as feature `openssl` except it will build openssl from

compiler/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio-compiler"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"

grpc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio-sys"
3-
version = "0.12.1+1.56.2-patched"
3+
version = "0.13.0+1.56.2-patched"
44
authors = ["The TiKV Project Developers"]
55
license = "Apache-2.0"
66
keywords = ["grpc", "bindings"]

health/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio-health"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"
@@ -21,7 +21,7 @@ prost-codec = ["grpcio/prost-codec", "prost"]
2121
[dependencies]
2222
futures-executor = "0.3"
2323
futures-util = { version = "0.3", default-features = false, features = ["std"] }
24-
grpcio = { path = "..", version = "0.12.1", default-features = false }
24+
grpcio = { path = "..", version = "0.13.0", default-features = false }
2525
prost = { version = "0.11", optional = true }
2626
protobuf = { version = "2", optional = true }
2727
protobufv3 = { package = "protobuf", version = "3.2", optional = true }

proto/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "grpcio-proto"
3-
version = "0.12.1"
3+
version = "0.13.0"
44
edition = "2018"
55
authors = ["The TiKV Project Developers"]
66
license = "Apache-2.0"
@@ -18,7 +18,7 @@ protobufv3-codec = ["grpcio/protobufv3-codec", "protobufv3"]
1818
prost-codec = ["prost-build", "prost-derive", "prost-types", "bytes", "lazy_static", "grpcio/prost-codec", "prost"]
1919

2020
[dependencies]
21-
grpcio = { path = "..", features = ["boringssl"], version = "0.12.1", default-features = false }
21+
grpcio = { path = "..", features = ["boringssl"], version = "0.13.0", default-features = false }
2222
bytes = { version = "1.0", optional = true }
2323
prost = { version = "0.11", optional = true }
2424
prost-derive = { version = "0.11", optional = true }

0 commit comments

Comments
 (0)