Skip to content

Commit beb06ea

Browse files
authored
chore(agp-config): release v0.1.3 (#74)
1 parent 90983f1 commit beb06ea

File tree

9 files changed

+14
-8
lines changed

9 files changed

+14
-8
lines changed

data-plane/Cargo.lock

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

data-plane/examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "sdk-mock"
99
path = "src/sdk-mock/main.rs"
1010

1111
[dependencies]
12-
agp-config = { path = "../gateway/config", version = "0.1.2" }
12+
agp-config = { path = "../gateway/config", version = "0.1.3" }
1313
agp-datapath = { path = "../gateway/datapath", version = "0.2.0" }
1414
agp-gw = { path = "../gateway/gateway", version = "0.3.4" }
1515
clap = "4.5"

data-plane/gateway/config/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.3](https://github.com/agntcy/agp/compare/agp-config-v0.1.2...agp-config-v0.1.3) - 2025-03-06
11+
12+
### Other
13+
14+
- Windows Instructions ([#73](https://github.com/agntcy/agp/pull/73))
15+
1016
## [0.1.2](https://github.com/agntcy/agp/compare/agp-config-v0.1.1...agp-config-v0.1.2) - 2025-02-28
1117

1218
### Added

data-plane/gateway/config/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agp-config"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
license = { workspace = true }
66
description = "Configuration utilities"

data-plane/gateway/gateway/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ default = ["multicore"]
1414
multicore = ["tokio/rt-multi-thread", "num_cpus"]
1515

1616
[dependencies]
17-
agp-config = { path = "../config", version = "0.1.2" }
17+
agp-config = { path = "../config", version = "0.1.3" }
1818
agp-service = { path = "../service", version = "0.1.4" }
1919
agp-signal = { path = "../signal", version = "0.1.0" }
2020
agp-tracing = { path = "../tracing", version = "0.1.2" }

data-plane/gateway/nop_component/Cargo.toml

+1-1
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.2" }
9+
agp-config = { path = "../config", version = "0.1.3" }
1010
serde = { version = "1.0", features = ["derive"] }
1111

1212
[dev-dependencies]

data-plane/gateway/service/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ version = "0.1.4"
66
description = "Main service and public API to interact with AGP data plane."
77

88
[dependencies]
9-
agp-config = { path = "../config", version = "0.1.2" }
9+
agp-config = { path = "../config", version = "0.1.3" }
1010
agp-datapath = { path = "../datapath", version = "0.2.0" }
1111
drain = { version = "0.1", features = ["retain"] }
1212
serde = "1.0.217"

data-plane/python-bindings/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ name = "_agp_bindings"
1010
crate-type = ["cdylib", "rlib"]
1111

1212
[dependencies]
13-
agp-config = { path = "../gateway/config", version = "0.1.2" }
13+
agp-config = { path = "../gateway/config", version = "0.1.3" }
1414
agp-datapath = { path = "../gateway/datapath", version = "0.2.0" }
1515
agp-service = { path = "../gateway/service", version = "0.1.4" }
1616
agp-tracing = { path = "../gateway/tracing", version = "0.1.2" }

data-plane/testing/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ name = "publisher"
1717
path = "src/bin/publisher.rs"
1818

1919
[dependencies]
20-
agp-config = { path = "../gateway/config", version = "0.1.2" }
20+
agp-config = { path = "../gateway/config", version = "0.1.3" }
2121
agp-datapath = { path = "../gateway/datapath", version = "0.2.0" }
2222
agp-gw = { path = "../gateway/gateway", version = "0.3.4" }
2323
clap = { version = "4.5", features = ["derive"] }

0 commit comments

Comments
 (0)