diff --git a/CHANGELOG.md b/CHANGELOG.md index 42bf501..e3abfc5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,8 @@ adheres to [Semantic Versioning](https://semver.org/). Work in progress lives un ## [Unreleased] +## [0.22.0] - 2026-07-18 + - **publish** — `--exclude-package` (and `--package`) now keep the filtered package in the dependency graph as a known, resolvable node instead of dropping it before the graph is built. A dependent that references an excluded package — e.g. a JS package pinning a compiler published by diff --git a/Cargo.lock b/Cargo.lock index f728e67..e1658fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1172,7 +1172,7 @@ dependencies = [ [[package]] name = "otf-release" -version = "0.21.0" +version = "0.22.0" dependencies = [ "anstream", "anstyle", @@ -1187,7 +1187,7 @@ dependencies = [ [[package]] name = "otf-release-adapters" -version = "0.21.0" +version = "0.22.0" dependencies = [ "anyhow", "glob", @@ -1200,7 +1200,7 @@ dependencies = [ [[package]] name = "otf-release-core" -version = "0.21.0" +version = "0.22.0" dependencies = [ "anyhow", "brotli", diff --git a/Cargo.toml b/Cargo.toml index f2c7c1e..0bd0740 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ # Shared metadata + dependency versions for every crate in the workspace. # Individual crates inherit these with `field.workspace = true`. [workspace.package] -version = "0.21.0" +version = "0.22.0" edition = "2021" license = "MIT" repository = "https://github.com/Open-Tech-Foundation/release"