Skip to content

Commit e0174a5

Browse files
committed
razor-rpc/razor-stream/razor-rpc-tcp: Dump version 0.9.0
1 parent ffce46a commit e0174a5

4 files changed

Lines changed: 12 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1313

1414
### Changed
1515

16+
## [0.9.0] - 2026-03-24
17+
18+
### Changed
19+
20+
- Adapted to new interface of orb-0.11
21+
1622
## [0.8.0] - 2026-03-17
1723

1824
### Added

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = ["codec", "macros", "stream", "stream/macros", "transport/tcp", "trans
33

44
[package]
55
name = "razor-rpc"
6-
version = "0.8.0"
6+
version = "0.9.0"
77
edition = "2024"
88
authors = ["plan <frostyplanet@gmail.com>"]
99
categories = ["concurrency", "network-programming"]
@@ -24,7 +24,7 @@ io-buffer = "1"
2424
serde = "1"
2525
async-trait = "0"
2626
crossfire = ">=3.1"
27-
orb = "0"
27+
orb = ">=0.11"
2828
razor-stream = {path="stream/", version=">=0.8"}
2929
razor-rpc-macros = { path = "macros", version = ">=0.8" }
3030
ahash = "0.8"

stream/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "razor-stream"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2024"
55
authors = ["plan <frostyplanet@gmail.com>"]
66
categories = ["concurrency", "network-programming"]
@@ -22,7 +22,7 @@ close_fds = ">=0.3.2"
2222
strum = {version = "0", features = ["derive"]}
2323
nix = "0"
2424
thiserror = "2"
25-
orb = ">=0.7"
25+
orb = ">=0.11"
2626
arc-swap = "1"
2727
razor-rpc-codec = {path="../codec/", version=">=0.3"}
2828
razor-stream-macros = {path="macros", version=">=0.8"}

transport/tcp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "razor-rpc-tcp"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2024"
55
authors = ["plan <frostyplanet@gmail.com>"]
66
categories = ["concurrency", "network-programming"]
@@ -18,7 +18,7 @@ with a low-level streaming interface, and high-level remote API call interface.
1818
[dependencies]
1919
razor-stream = {path="../../stream", version=">=0.8"}
2020
log = { version = "0.4", features = ["std", "kv_unstable"] }
21-
orb = { version="0"}
21+
orb = { version=">=0.11"}
2222
captains-log = ">=0.15"
2323
crossfire = ">=3.1"
2424
io-buffer = "1"

0 commit comments

Comments
 (0)