Skip to content

Commit 7dc02b6

Browse files
committed
chore(release): bump workspace version to 0.2.0-alpha.6
Version-only bump (no tag). Ships the fixes already on dev since alpha.5: the cpex-builtins default-features correction, and the cel + valkey bundling in the FFI artifact. Tag v0.2.0-alpha.6 when ready to cut the release. Signed-off-by: Frederico Araujo <frederico.araujo@ibm.com>
1 parent e79e42b commit 7dc02b6

3 files changed

Lines changed: 35 additions & 35 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ default-members = [
5858
]
5959

6060
[workspace.package]
61-
version = "0.2.0-alpha.5"
61+
version = "0.2.0-alpha.6"
6262
edition = "2021"
6363
# MSRV — keep in sync with rust-toolchain.toml `channel` and clippy.toml `msrv`.
6464
rust-version = "1.96"
@@ -102,21 +102,21 @@ regex = "1"
102102
# time cargo substitutes it for the `path`. `cargo release` keeps these in sync
103103
# with the workspace version. Keys are package names (builtins differ from their
104104
# directory names), paths are workspace-root-relative.
105-
cpex-core = { path = "crates/cpex-core", version = "0.2.0-alpha.5" }
106-
cpex-orchestration = { path = "crates/cpex-orchestration", version = "0.2.0-alpha.5" }
107-
cpex-sdk = { path = "crates/cpex-sdk", version = "0.2.0-alpha.5" }
108-
cpex-builtins = { path = "crates/cpex-builtins", version = "0.2.0-alpha.5", default-features = false }
109-
apl-core = { path = "crates/apl-core", version = "0.2.0-alpha.5" }
110-
apl-cmf = { path = "crates/apl-cmf", version = "0.2.0-alpha.5" }
111-
apl-cpex = { path = "crates/apl-cpex", version = "0.2.0-alpha.5" }
112-
cpex-plugin-pii-scanner = { path = "builtins/plugins/pii-scanner", version = "0.2.0-alpha.5" }
113-
cpex-plugin-audit-logger = { path = "builtins/plugins/audit-logger", version = "0.2.0-alpha.5" }
114-
cpex-plugin-identity-jwt = { path = "builtins/plugins/identity-jwt", version = "0.2.0-alpha.5" }
115-
cpex-plugin-delegator-oauth = { path = "builtins/plugins/delegator-oauth", version = "0.2.0-alpha.5" }
116-
cpex-plugin-delegator-biscuit = { path = "builtins/plugins/delegator-biscuit", version = "0.2.0-alpha.5" }
117-
cpex-pdp-cedar-direct = { path = "builtins/pdps/cedar-direct", version = "0.2.0-alpha.5" }
118-
cpex-pdp-cel = { path = "builtins/pdps/cel", version = "0.2.0-alpha.5" }
119-
cpex-session-valkey = { path = "builtins/session/valkey", version = "0.2.0-alpha.5" }
105+
cpex-core = { path = "crates/cpex-core", version = "0.2.0-alpha.6" }
106+
cpex-orchestration = { path = "crates/cpex-orchestration", version = "0.2.0-alpha.6" }
107+
cpex-sdk = { path = "crates/cpex-sdk", version = "0.2.0-alpha.6" }
108+
cpex-builtins = { path = "crates/cpex-builtins", version = "0.2.0-alpha.6", default-features = false }
109+
apl-core = { path = "crates/apl-core", version = "0.2.0-alpha.6" }
110+
apl-cmf = { path = "crates/apl-cmf", version = "0.2.0-alpha.6" }
111+
apl-cpex = { path = "crates/apl-cpex", version = "0.2.0-alpha.6" }
112+
cpex-plugin-pii-scanner = { path = "builtins/plugins/pii-scanner", version = "0.2.0-alpha.6" }
113+
cpex-plugin-audit-logger = { path = "builtins/plugins/audit-logger", version = "0.2.0-alpha.6" }
114+
cpex-plugin-identity-jwt = { path = "builtins/plugins/identity-jwt", version = "0.2.0-alpha.6" }
115+
cpex-plugin-delegator-oauth = { path = "builtins/plugins/delegator-oauth", version = "0.2.0-alpha.6" }
116+
cpex-plugin-delegator-biscuit = { path = "builtins/plugins/delegator-biscuit", version = "0.2.0-alpha.6" }
117+
cpex-pdp-cedar-direct = { path = "builtins/pdps/cedar-direct", version = "0.2.0-alpha.6" }
118+
cpex-pdp-cel = { path = "builtins/pdps/cel", version = "0.2.0-alpha.6" }
119+
cpex-session-valkey = { path = "builtins/session/valkey", version = "0.2.0-alpha.6" }
120120

121121
# Size-first release profile. The FFI artifact (libcpex_ffi.a) is linked
122122
# statically into host binaries, so its compiled size flows straight into

crates/cpex/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# `builtins` / `full` feature (or a granular plugin feature) is enabled — so
1212
# the default `cpex = "0.2"` is the engine alone, no plugins compiled.
1313
#
14-
# cpex = { version = "0.2.0-alpha.5", features = ["builtins"] } # default builtin set
15-
# cpex = { version = "0.2.0-alpha.5", features = ["jwt", "cedar"] } # a minimal subset
14+
# cpex = { version = "0.2.0-alpha.6", features = ["builtins"] } # default builtin set
15+
# cpex = { version = "0.2.0-alpha.6", features = ["jwt", "cedar"] } # a minimal subset
1616
#
1717
# then `cpex::install_builtins(&mgr)` registers every enabled factory and
1818
# installs the APL config visitor in one call.

0 commit comments

Comments
 (0)