Skip to content

Commit 8d9e634

Browse files
authored
chore: release
1 parent 3d97e1b commit 8d9e634

23 files changed

Lines changed: 114 additions & 34 deletions

Cargo.lock

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

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,20 +39,20 @@ resolver = "2"
3939

4040
[workspace.dependencies]
4141
# Local dependencies
42-
agntcy-slim = { path = "crates/slim", version = "2.0.0-alpha.1" }
43-
agntcy-slim-auth = { path = "crates/auth", version = "0.10.0" }
44-
agntcy-slim-config = { path = "crates/config", version = "0.11.0" }
45-
agntcy-slim-controller = { path = "crates/controller", version = "0.8.0" }
46-
agntcy-slim-datapath = { path = "crates/datapath", version = "0.15.0" }
47-
agntcy-slim-mls = { path = "crates/mls", version = "0.2.0" }
42+
agntcy-slim = { path = "crates/slim", version = "2.0.0-alpha.2" }
43+
agntcy-slim-auth = { path = "crates/auth", version = "0.10.1" }
44+
agntcy-slim-config = { path = "crates/config", version = "0.11.1" }
45+
agntcy-slim-controller = { path = "crates/controller", version = "0.9.0" }
46+
agntcy-slim-datapath = { path = "crates/datapath", version = "0.16.0" }
47+
agntcy-slim-mls = { path = "crates/mls", version = "0.2.1" }
4848
agntcy-slim-proto = { path = "crates/proto", version = "0.1.0" }
49-
agntcy-slim-service = { path = "crates/service", version = "0.10.0", default-features = false }
50-
agntcy-slim-session = { path = "crates/session", version = "0.3.0" }
51-
agntcy-slim-signal = { path = "crates/signal", version = "0.1.10" }
49+
agntcy-slim-service = { path = "crates/service", version = "0.10.1", default-features = false }
50+
agntcy-slim-session = { path = "crates/session", version = "0.3.1" }
51+
agntcy-slim-signal = { path = "crates/signal", version = "0.1.11" }
5252
agntcy-slim-testing = { path = "crates/testing" }
53-
agntcy-slim-tracing = { path = "crates/tracing", version = "0.4.0" }
54-
agntcy-slim-version = { path = "crates/version", version = "2.0.0-alpha.1" }
55-
agntcy-slimctl = { path = "crates/slimctl", version = "2.0.0-alpha.1" }
53+
agntcy-slim-tracing = { path = "crates/tracing", version = "0.4.1" }
54+
agntcy-slim-version = { path = "crates/version", version = "2.0.0-alpha.2" }
55+
agntcy-slimctl = { path = "crates/slimctl", version = "2.0.0-alpha.2" }
5656
anyhow = "1.0.98"
5757

5858
arc-swap = "1.9.1"
@@ -196,7 +196,7 @@ web-time = "1"
196196
wiremock = "0.6"
197197

198198
[workspace.package]
199-
version = "2.0.0-alpha.1"
199+
version = "2.0.0-alpha.2"
200200
license = "Apache-2.0"
201201
edition = "2024"
202202
repository = "https://github.com/agntcy/slim"

crates/auth/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.10.1](https://github.com/agntcy/slim/compare/slim-auth-v0.10.0...slim-auth-v0.10.1) - 2026-06-18
11+
12+
### Other
13+
14+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
15+
1016
## [0.10.0](https://github.com/agntcy/slim/compare/slim-auth-v0.9.0...slim-auth-v0.10.0) - 2026-06-17
1117

1218
### Added

crates/auth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-auth"
3-
version = "0.10.0"
3+
version = "0.10.1"
44
license = { workspace = true }
55
edition = { workspace = true }
66
description = "Authentication utilities for the Agntcy Slim framework"

crates/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.11.1](https://github.com/agntcy/slim/compare/slim-config-v0.11.0...slim-config-v0.11.1) - 2026-06-18
11+
12+
### Other
13+
14+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
15+
1016
## [0.11.0](https://github.com/agntcy/slim/compare/slim-config-v0.10.0...slim-config-v0.11.0) - 2026-06-17
1117

1218
### Added

crates/config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-config"
3-
version = "0.11.0"
3+
version = "0.11.1"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Configuration utilities"

crates/controller/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.9.0](https://github.com/agntcy/slim/compare/slim-controller-v0.8.0...slim-controller-v0.9.0) - 2026-06-18
11+
12+
### Other
13+
14+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
15+
1016
## [0.8.0](https://github.com/agntcy/slim/compare/slim-controller-v0.7.0...slim-controller-v0.8.0) - 2026-06-17
1117

1218
### Added

crates/controller/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-controller"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Controller service and control API to configure the SLIM data plane through the control plane."

crates/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.16.0](https://github.com/agntcy/slim/compare/slim-datapath-v0.15.0...slim-datapath-v0.16.0) - 2026-06-18
11+
12+
### Other
13+
14+
- restructure repo as pure Rust workspace ([#1693](https://github.com/agntcy/slim/pull/1693))
15+
1016
## [0.15.0](https://github.com/agntcy/slim/compare/slim-datapath-v0.14.1...slim-datapath-v0.15.0) - 2026-06-17
1117

1218
### Added

crates/datapath/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "agntcy-slim-datapath"
3-
version = "0.15.0"
3+
version = "0.16.0"
44
edition = { workspace = true }
55
license = { workspace = true }
66
description = "Core data plane functionality for SLIM"

0 commit comments

Comments
 (0)