Skip to content

Commit a2c26e1

Browse files
committed
chore: release v0.2.1
1 parent f35b02c commit a2c26e1

3 files changed

Lines changed: 29 additions & 20 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1] - 2026-02-27
11+
12+
### Fixed
13+
14+
- **Playground gateway**: switched from `barbacane` to `barbacane-standalone` image so the gateway binary includes the wildcard path parameter fix; `barbacane:latest` on GHCR was built from a stale builder layer missing PR #35, causing single-segment `{param+}` wildcards (e.g. `/assets/welcome.txt`) to return 400 instead of routing correctly
15+
- **Playground healthcheck**: replaced `wget` (unavailable in the distroless `barbacane` image) with `bash /dev/tcp` so the container reaches healthy status
16+
- **Router test coverage**: added missing test case for `/{static}/{param}/{wildcard+}` with a single-segment wildcard value
17+
1018
## [0.2.0] - 2026-02-27
1119

1220
### Added
@@ -375,7 +383,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
375383
- Comprehensive documentation
376384
- GitHub Actions CI
377385

378-
[Unreleased]: https://github.com/barbacane-dev/Barbacane/compare/v0.2.0...HEAD
386+
[Unreleased]: https://github.com/barbacane-dev/Barbacane/compare/v0.2.1...HEAD
387+
[0.2.1]: https://github.com/barbacane-dev/Barbacane/compare/v0.2.0...v0.2.1
379388
[0.2.0]: https://github.com/barbacane-dev/Barbacane/compare/v0.1.2...v0.2.0
380389
[0.1.2]: https://github.com/barbacane-dev/Barbacane/compare/v0.1.1...v0.1.2
381390
[0.1.1]: https://github.com/barbacane-dev/Barbacane/compare/v0.1.0...v0.1.1

Cargo.lock

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

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ exclude = [
1919
resolver = "2"
2020

2121
[workspace.package]
22-
version = "0.2.0"
22+
version = "0.2.1"
2323
edition = "2021"
2424
license = "MIT"
2525
repository = "https://github.com/barbacane-dev/Barbacane"
@@ -138,15 +138,15 @@ assert_cmd = "2"
138138
predicates = "3"
139139

140140
# Workspace crates (version required for crates.io publishing)
141-
barbacane-sigv4 = { path = "crates/barbacane-sigv4", version = "0.2.0" }
142-
barbacane-compiler = { path = "crates/barbacane-compiler", version = "0.2.0" }
143-
barbacane-plugin-sdk = { path = "crates/barbacane-plugin-sdk", version = "0.2.0" }
144-
barbacane-plugin-macros = { path = "crates/barbacane-plugin-macros", version = "0.2.0" }
145-
barbacane-wasm = { path = "crates/barbacane-wasm", version = "0.2.0" }
146-
barbacane-telemetry = { path = "crates/barbacane-telemetry", version = "0.2.0" }
147-
barbacane-test = { path = "crates/barbacane-test", version = "0.2.0" }
148-
barbacane = { path = "crates/barbacane", version = "0.2.0" }
149-
barbacane-control = { path = "crates/barbacane-control", version = "0.2.0" }
141+
barbacane-sigv4 = { path = "crates/barbacane-sigv4", version = "0.2.1" }
142+
barbacane-compiler = { path = "crates/barbacane-compiler", version = "0.2.1" }
143+
barbacane-plugin-sdk = { path = "crates/barbacane-plugin-sdk", version = "0.2.1" }
144+
barbacane-plugin-macros = { path = "crates/barbacane-plugin-macros", version = "0.2.1" }
145+
barbacane-wasm = { path = "crates/barbacane-wasm", version = "0.2.1" }
146+
barbacane-telemetry = { path = "crates/barbacane-telemetry", version = "0.2.1" }
147+
barbacane-test = { path = "crates/barbacane-test", version = "0.2.1" }
148+
barbacane = { path = "crates/barbacane", version = "0.2.1" }
149+
barbacane-control = { path = "crates/barbacane-control", version = "0.2.1" }
150150

151151
[profile.dev]
152152
opt-level = 0

0 commit comments

Comments
 (0)