Skip to content

Commit cbd98a6

Browse files
authored
chore: release (#93)
1 parent ab53a7d commit cbd98a6

File tree

15 files changed

+59
-29
lines changed

15 files changed

+59
-29
lines changed

data-plane/Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

data-plane/examples/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ name = "sdk-mock"
99
path = "src/sdk-mock/main.rs"
1010

1111
[dependencies]
12-
agp-config = { path = "../gateway/config", version = "0.1.4" }
13-
agp-datapath = { path = "../gateway/datapath", version = "0.3.0" }
14-
agp-gw = { path = "../gateway/gateway", version = "0.3.6" }
12+
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" }
1515
clap = "4.5"
1616
tokio = "1"
1717
tracing = "0.1.41"

data-plane/gateway/config/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.5](https://github.com/agntcy/agp/compare/agp-config-v0.1.4...agp-config-v0.1.5) - 2025-03-18
11+
12+
### Added
13+
14+
- propagate context to enable distributed tracing ([#90](https://github.com/agntcy/agp/pull/90))
15+
1016
## [0.1.4](https://github.com/agntcy/agp/compare/agp-config-v0.1.3...agp-config-v0.1.4) - 2025-03-11
1117

1218
### Other

data-plane/gateway/config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "agp-config"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
edition = "2021"
55
license = { workspace = true }
66
description = "Configuration utilities"
77

88
[dependencies]
9-
agp-tracing = { path = "../tracing", version = "0.1.2" }
9+
agp-tracing = { path = "../tracing", version = "0.1.3" }
1010
duration-str = "0.12.0"
1111
futures = "0.3.31"
1212
http = "1.2.0"

data-plane/gateway/datapath/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.1](https://github.com/agntcy/agp/compare/agp-datapath-v0.3.0...agp-datapath-v0.3.1) - 2025-03-18
11+
12+
### Added
13+
14+
- propagate context to enable distributed tracing ([#90](https://github.com/agntcy/agp/pull/90))
15+
1016
## [0.3.0](https://github.com/agntcy/agp/compare/agp-datapath-v0.2.1...agp-datapath-v0.3.0) - 2025-03-12
1117

1218
### Added

data-plane/gateway/datapath/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "agp-datapath"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
edition = "2021"
55
license = { workspace = true }
66
description = "Core data plane functionality for AGP"
77

88
[dependencies]
9-
agp-config = { path = "../config", version = "0.1.4" }
10-
agp-tracing = { path = "../tracing", version = "0.1.2" }
9+
agp-config = { path = "../config", version = "0.1.5" }
10+
agp-tracing = { path = "../tracing", version = "0.1.3" }
1111
bit-vec = "0.8"
1212
bytes = { version = "1.9.0" }
1313
drain = { version = "0.1", features = ["retain"] }

data-plane/gateway/gateway/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.7](https://github.com/agntcy/agp/compare/agp-gw-v0.3.6...agp-gw-v0.3.7) - 2025-03-18
11+
12+
### Other
13+
14+
- update Cargo.lock dependencies
15+
1016
## [0.3.6](https://github.com/agntcy/agp/compare/agp-gw-v0.3.5...agp-gw-v0.3.6) - 2025-03-12
1117

1218
### Other

data-plane/gateway/gateway/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agp-gw"
3-
version = "0.3.6"
3+
version = "0.3.7"
44
edition = "2021"
55
license = { workspace = true }
66
description = "The main gateway executable"
@@ -14,10 +14,10 @@ default = ["multicore"]
1414
multicore = ["tokio/rt-multi-thread", "num_cpus"]
1515

1616
[dependencies]
17-
agp-config = { path = "../config", version = "0.1.4" }
18-
agp-service = { path = "../service", version = "0.1.6" }
17+
agp-config = { path = "../config", version = "0.1.5" }
18+
agp-service = { path = "../service", version = "0.1.7" }
1919
agp-signal = { path = "../signal", version = "0.1.0" }
20-
agp-tracing = { path = "../tracing", version = "0.1.2" }
20+
agp-tracing = { path = "../tracing", version = "0.1.3" }
2121
clap = { version = "4.5.23", features = ["derive", "env"] }
2222
duration-str = "0.12.0"
2323
lazy_static = "1.5.0"

data-plane/gateway/nop_component/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = { workspace = true }
77

88
[dependencies]
9-
agp-config = { path = "../config", version = "0.1.4" }
9+
agp-config = { path = "../config", version = "0.1.5" }
1010
serde = { version = "1.0", features = ["derive"] }
1111

1212
[dev-dependencies]

data-plane/gateway/service/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
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.7](https://github.com/agntcy/agp/compare/agp-service-v0.1.6...agp-service-v0.1.7) - 2025-03-18
11+
12+
### Added
13+
14+
- propagate context to enable distributed tracing ([#90](https://github.com/agntcy/agp/pull/90))
15+
1016
## [0.1.6](https://github.com/agntcy/agp/compare/agp-service-v0.1.5...agp-service-v0.1.6) - 2025-03-12
1117

1218
### Added

0 commit comments

Comments
 (0)