Skip to content

Commit eeda15a

Browse files
authored
chore: Start development of version 0.14 (#2303)
1 parent 5182252 commit eeda15a

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

grpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ license = "Apache-2.0"
88
[dependencies]
99
url = "2.5.0"
1010
tokio = { version = "1.37.0", features = ["sync"] }
11-
tonic = { version = "0.13.0", path = "../tonic", default-features = false, features = ["codegen"] }
11+
tonic = { version = "0.14.0", path = "../tonic", default-features = false, features = ["codegen"] }

tonic-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111
name = "tonic-build"
1212
readme = "README.md"
1313
repository = "https://github.com/hyperium/tonic"
14-
version = "0.13.1"
14+
version = "0.14.0"
1515
rust-version = { workspace = true }
1616

1717
[dependencies]

tonic-health/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ license = "MIT"
1111
name = "tonic-health"
1212
readme = "README.md"
1313
repository = "https://github.com/hyperium/tonic"
14-
version = "0.13.1"
14+
version = "0.14.0"
1515
rust-version = { workspace = true }
1616

1717
[dependencies]
1818
prost = "0.14"
1919
tokio = {version = "1.0", features = ["sync"]}
2020
tokio-stream = {version = "0.1", default-features = false, features = ["sync"]}
21-
tonic = { version = "0.13.0", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
21+
tonic = { version = "0.14.0", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
2222

2323
[dev-dependencies]
2424
tokio = {version = "1.0", features = ["rt-multi-thread", "macros"]}

tonic-reflection/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ license = "MIT"
1414
name = "tonic-reflection"
1515
readme = "README.md"
1616
repository = "https://github.com/hyperium/tonic"
17-
version = "0.13.1"
17+
version = "0.14.0"
1818
rust-version = { workspace = true }
1919

2020
[package.metadata.docs.rs]
@@ -29,11 +29,11 @@ prost = "0.14"
2929
prost-types = {version = "0.14", optional = true}
3030
tokio = { version = "1.0", features = ["sync", "rt"], optional = true }
3131
tokio-stream = {version = "0.1", default-features = false, optional = true }
32-
tonic = { version = "0.13.0", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
32+
tonic = { version = "0.14.0", path = "../tonic", default-features = false, features = ["codegen", "prost"] }
3333

3434
[dev-dependencies]
3535
tokio-stream = {version = "0.1", default-features = false, features = ["net"]}
36-
tonic = { version = "0.13.0", path = "../tonic", default-features = false, features = ["transport"] }
36+
tonic = { version = "0.14.0", path = "../tonic", default-features = false, features = ["transport"] }
3737

3838
[lints]
3939
workspace = true

tonic-types/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ license = "MIT"
1414
name = "tonic-types"
1515
readme = "README.md"
1616
repository = "https://github.com/hyperium/tonic"
17-
version = "0.13.1"
17+
version = "0.14.0"
1818
rust-version = { workspace = true }
1919

2020
[dependencies]
2121
prost = "0.14"
2222
prost-types = "0.14"
23-
tonic = { version = "0.13.0", path = "../tonic", default-features = false }
23+
tonic = { version = "0.14.0", path = "../tonic", default-features = false }
2424

2525
[lints]
2626
workspace = true

tonic-web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT"
1111
name = "tonic-web"
1212
readme = "README.md"
1313
repository = "https://github.com/hyperium/tonic"
14-
version = "0.13.1"
14+
version = "0.14.0"
1515
rust-version = { workspace = true }
1616

1717
[dependencies]
@@ -21,7 +21,7 @@ tokio-stream = { version = "0.1", default-features = false }
2121
http = "1"
2222
http-body = "1"
2323
pin-project = "1"
24-
tonic = { version = "0.13.0", path = "../tonic", default-features = false }
24+
tonic = { version = "0.14.0", path = "../tonic", default-features = false }
2525
tower-service = "0.3"
2626
tower-layer = "0.3"
2727
tracing = "0.1"

tonic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ keywords = ["rpc", "grpc", "async", "futures", "protobuf"]
1515
license = "MIT"
1616
readme = "../README.md"
1717
repository = "https://github.com/hyperium/tonic"
18-
version = "0.13.1"
18+
version = "0.14.0"
1919
rust-version = {workspace = true}
2020
exclude = ["benches-disabled"]
2121

0 commit comments

Comments
 (0)