Skip to content

Commit d0fcc1e

Browse files
author
release-plz[bot]
committed
chore: release v1.25.1
1 parent 6db2b39 commit d0fcc1e

19 files changed

Lines changed: 120 additions & 32 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ lto = "fat"
1818
codegen-units = 1
1919

2020
[workspace.package]
21-
version = "1.25.0"
21+
version = "1.25.1"
2222
edition = "2024"
2323
rust-version = "1.93"
2424
license = "MIT"
@@ -148,19 +148,19 @@ diffy = "0.5"
148148
# Internal crates — `version` is required so `cargo publish` can resolve
149149
# transitive crate dependencies via crates.io. release-plz keeps these
150150
# versions in sync with [workspace.package].version during release PRs.
151-
aube = { path = "crates/aube", version = "1.25.0" }
152-
aube-codes = { path = "crates/aube-codes", version = "1.25.0" }
153-
aube-settings = { path = "crates/aube-settings", version = "1.25.0" }
154-
aube-resolver = { path = "crates/aube-resolver", version = "1.25.0" }
155-
aube-registry = { path = "crates/aube-registry", version = "1.25.0" }
156-
aube-store = { path = "crates/aube-store", version = "1.25.0" }
157-
aube-linker = { path = "crates/aube-linker", version = "1.25.0" }
158-
aube-lockfile = { path = "crates/aube-lockfile", version = "1.25.0" }
159-
aube-manifest = { path = "crates/aube-manifest", version = "1.25.0" }
160-
aube-runtime = { path = "crates/aube-runtime", version = "1.25.0" }
161-
aube-scripts = { path = "crates/aube-scripts", version = "1.25.0" }
162-
aube-workspace = { path = "crates/aube-workspace", version = "1.25.0" }
163-
aube-util = { path = "crates/aube-util", version = "1.25.0" }
151+
aube = { path = "crates/aube", version = "1.25.1" }
152+
aube-codes = { path = "crates/aube-codes", version = "1.25.1" }
153+
aube-settings = { path = "crates/aube-settings", version = "1.25.1" }
154+
aube-resolver = { path = "crates/aube-resolver", version = "1.25.1" }
155+
aube-registry = { path = "crates/aube-registry", version = "1.25.1" }
156+
aube-store = { path = "crates/aube-store", version = "1.25.1" }
157+
aube-linker = { path = "crates/aube-linker", version = "1.25.1" }
158+
aube-lockfile = { path = "crates/aube-lockfile", version = "1.25.1" }
159+
aube-manifest = { path = "crates/aube-manifest", version = "1.25.1" }
160+
aube-runtime = { path = "crates/aube-runtime", version = "1.25.1" }
161+
aube-scripts = { path = "crates/aube-scripts", version = "1.25.1" }
162+
aube-workspace = { path = "crates/aube-workspace", version = "1.25.1" }
163+
aube-util = { path = "crates/aube-util", version = "1.25.1" }
164164

165165
[profile.dev]
166166
debug = 1

aube.usage.kdl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name aube
22
bin aube
3-
version "1.25.0"
3+
version "1.25.1"
44
about "A fast Node.js package manager"
55
usage "Usage: aube [OPTIONS] [COMMAND]"
66
flag "-C --dir --cd --prefix" help="Change to directory before running (like `make -C` or `mise --cd`)" global=#true {

crates/aube-codes/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+
## [1.25.1](https://github.com/jdx/aube/compare/aube-codes-v1.25.0...aube-codes-v1.25.1) - 2026-06-26
11+
12+
### Other
13+
14+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
15+
1016
## [1.25.0](https://github.com/jdx/aube/compare/aube-codes-v1.24.0...aube-codes-v1.25.0) - 2026-06-25
1117

1218
### Added

crates/aube-linker/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.25.1](https://github.com/jdx/aube/compare/aube-linker-v1.25.0...aube-linker-v1.25.1) - 2026-06-26
11+
12+
### Fixed
13+
14+
- *(linker)* make aube dir materialization atomic ([#950](https://github.com/jdx/aube/pull/950))
15+
16+
### Other
17+
18+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
19+
1020
## [1.25.0](https://github.com/jdx/aube/compare/aube-linker-v1.24.0...aube-linker-v1.25.0) - 2026-06-25
1121

1222
### Added

crates/aube-lockfile/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+
## [1.25.1](https://github.com/jdx/aube/compare/aube-lockfile-v1.25.0...aube-lockfile-v1.25.1) - 2026-06-26
11+
12+
### Other
13+
14+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
15+
1016
## [1.25.0](https://github.com/jdx/aube/compare/aube-lockfile-v1.24.0...aube-lockfile-v1.25.0) - 2026-06-25
1117

1218
### Added

crates/aube-manifest/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+
## [1.25.1](https://github.com/jdx/aube/compare/aube-manifest-v1.25.0...aube-manifest-v1.25.1) - 2026-06-26
11+
12+
### Other
13+
14+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
15+
1016
## [1.25.0](https://github.com/jdx/aube/compare/aube-manifest-v1.24.0...aube-manifest-v1.25.0) - 2026-06-25
1117

1218
### Added

crates/aube-registry/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+
## [1.25.1](https://github.com/jdx/aube/compare/aube-registry-v1.25.0...aube-registry-v1.25.1) - 2026-06-26
11+
12+
### Other
13+
14+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
15+
1016
## [1.25.0](https://github.com/jdx/aube/compare/aube-registry-v1.24.0...aube-registry-v1.25.0) - 2026-06-25
1117

1218
### Added

crates/aube-resolver/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [1.25.1](https://github.com/jdx/aube/compare/aube-resolver-v1.25.0...aube-resolver-v1.25.1) - 2026-06-26
11+
12+
### Other
13+
14+
- *(resolver)* share ancestor chains via Arc instead of per-dep deep clone ([#949](https://github.com/jdx/aube/pull/949))
15+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
16+
1017
## [1.25.0](https://github.com/jdx/aube/compare/aube-resolver-v1.24.0...aube-resolver-v1.25.0) - 2026-06-25
1118

1219
### Added

crates/aube-runtime/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+
## [1.25.1](https://github.com/jdx/aube/compare/aube-runtime-v1.25.0...aube-runtime-v1.25.1) - 2026-06-26
11+
12+
### Other
13+
14+
- refresh benchmarks for v1.25.0 ([#947](https://github.com/jdx/aube/pull/947))
15+
1016
## [1.25.0](https://github.com/jdx/aube/compare/aube-runtime-v1.24.0...aube-runtime-v1.25.0) - 2026-06-25
1117

1218
### Added

0 commit comments

Comments
 (0)