Skip to content

Commit 919212a

Browse files
authored
chore: release (#94)
1 parent aefaaa0 commit 919212a

File tree

10 files changed

+32
-14
lines changed

10 files changed

+32
-14
lines changed

data-plane/Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data-plane/examples/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ path = "src/sdk-mock/main.rs"
1010

1111
[dependencies]
1212
agp-config = { path = "../gateway/config", version = "0.1.5" }
13-
agp-datapath = { path = "../gateway/datapath", version = "0.3.1" }
14-
agp-gw = { path = "../gateway/gateway", version = "0.3.7" }
13+
agp-datapath = { path = "../gateway/datapath", version = "0.4.0" }
14+
agp-gw = { path = "../gateway/gateway", version = "0.3.8" }
1515
clap = "4.5"
1616
tokio = "1"
1717
tracing = "0.1.41"

data-plane/gateway/datapath/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.4.0](https://github.com/agntcy/agp/compare/agp-datapath-v0.3.1...agp-datapath-v0.4.0) - 2025-03-18
11+
12+
### Added
13+
14+
- new message format ([#88](https://github.com/agntcy/agp/pull/88))
15+
1016
## [0.3.1](https://github.com/agntcy/agp/compare/agp-datapath-v0.3.0...agp-datapath-v0.3.1) - 2025-03-18
1117

1218
### Added

data-plane/gateway/datapath/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agp-datapath"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
edition = "2021"
55
license = { workspace = true }
66
description = "Core data plane functionality for AGP"

data-plane/gateway/gateway/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.8](https://github.com/agntcy/agp/compare/agp-gw-v0.3.7...agp-gw-v0.3.8) - 2025-03-18
11+
12+
### Other
13+
14+
- updated the following local packages: agp-service
15+
1016
## [0.3.7](https://github.com/agntcy/agp/compare/agp-gw-v0.3.6...agp-gw-v0.3.7) - 2025-03-18
1117

1218
### Other

data-plane/gateway/gateway/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agp-gw"
3-
version = "0.3.7"
3+
version = "0.3.8"
44
edition = "2021"
55
license = { workspace = true }
66
description = "The main gateway executable"
@@ -15,7 +15,7 @@ multicore = ["tokio/rt-multi-thread", "num_cpus"]
1515

1616
[dependencies]
1717
agp-config = { path = "../config", version = "0.1.5" }
18-
agp-service = { path = "../service", version = "0.1.7" }
18+
agp-service = { path = "../service", version = "0.1.8" }
1919
agp-signal = { path = "../signal", version = "0.1.0" }
2020
agp-tracing = { path = "../tracing", version = "0.1.3" }
2121
clap = { version = "4.5.23", features = ["derive", "env"] }

data-plane/gateway/service/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.8](https://github.com/agntcy/agp/compare/agp-service-v0.1.7...agp-service-v0.1.8) - 2025-03-18
11+
12+
### Added
13+
14+
- new message format ([#88](https://github.com/agntcy/agp/pull/88))
15+
1016
## [0.1.7](https://github.com/agntcy/agp/compare/agp-service-v0.1.6...agp-service-v0.1.7) - 2025-03-18
1117

1218
### Added

data-plane/gateway/service/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
name = "agp-service"
33
edition = "2021"
44
license = { workspace = true }
5-
version = "0.1.7"
5+
version = "0.1.8"
66
description = "Main service and public API to interact with AGP data plane."
77

88
[dependencies]
99
agp-config = { path = "../config", version = "0.1.5" }
10-
agp-datapath = { path = "../datapath", version = "0.3.1" }
10+
agp-datapath = { path = "../datapath", version = "0.4.0" }
1111
drain = { version = "0.1", features = ["retain"] }
1212
serde = "1.0.217"
1313
thiserror = "2.0.9"

data-plane/python-bindings/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ crate-type = ["cdylib", "rlib"]
1111

1212
[dependencies]
1313
agp-config = { path = "../gateway/config", version = "0.1.5" }
14-
agp-datapath = { path = "../gateway/datapath", version = "0.3.1" }
15-
agp-service = { path = "../gateway/service", version = "0.1.7" }
14+
agp-datapath = { path = "../gateway/datapath", version = "0.4.0" }
15+
agp-service = { path = "../gateway/service", version = "0.1.8" }
1616
agp-tracing = { path = "../gateway/tracing", version = "0.1.3" }
1717
pyo3 = "0.23.3"
1818
pyo3-async-runtimes = { version = "0.23.0", features = ["tokio-runtime"] }

data-plane/testing/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ path = "src/bin/publisher.rs"
1818

1919
[dependencies]
2020
agp-config = { path = "../gateway/config", version = "0.1.5" }
21-
agp-datapath = { path = "../gateway/datapath", version = "0.3.1" }
22-
agp-gw = { path = "../gateway/gateway", version = "0.3.7" }
21+
agp-datapath = { path = "../gateway/datapath", version = "0.4.0" }
22+
agp-gw = { path = "../gateway/gateway", version = "0.3.8" }
2323
clap = { version = "4.5", features = ["derive"] }
2424
indicatif = "0.17.11"
2525
parking_lot = "0.12"

0 commit comments

Comments
 (0)