Skip to content

Commit b96f4b7

Browse files
committed
release: 0.28.0
1 parent 34732d2 commit b96f4b7

File tree

3 files changed

+22
-6
lines changed

3 files changed

+22
-6
lines changed

CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22

33
Nothing Yet!
44

5+
# Version 0.28.0 (2025-01-08)
6+
7+
This release contains a new feature that improves the Windows PowerShell installer. We've also made some behind-the-scenes changes which most users won't notice yet - keep an eye out for our next major release!
8+
9+
## PowerShell improvements
10+
11+
While we've always updated the user's `Path` variable for them, in the past the user had to reboot their system for the change to be reflected or temporarily add the installation directory to the `Path` themselves. Starting in 0.28.0, we now only require you to restart your shell for the change to take effect, not the entire system. We've also made improvements to our handling of this variable to better support users whose `Path` contained variable expansions.
12+
13+
Thanks to open source contributor @DavisVaughan, who did extensive research as well as writing the feature!
14+
15+
- impl @DavisVaughan [Rework Add-Path to avoid expanding and request an environment refresh](https://github.com/axodotdev/cargo-dist/pull/1658)
16+
17+
## Fixes
18+
19+
- @mistydemeo [Properly support installing apt packages from the default cargo-xwin builder](https://github.com/axodotdev/cargo-dist/pull/1681)
20+
521
# Version 0.27.1 (2025-01-06)
622

723
## Fixed a bug where `dist migrate` would delete `dist-workspace.toml`

Cargo.lock

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ edition = "2021"
1212
license = "MIT OR Apache-2.0"
1313
repository = "https://github.com/axodotdev/cargo-dist"
1414
homepage = "https://opensource.axo.dev/cargo-dist/"
15-
version = "0.27.1"
15+
version = "0.28.0"
1616
rust-version = "1.74"
1717

1818
[workspace.dependencies]
1919
# intra-workspace deps (you need to bump these versions when you cut releases too!
20-
cargo-dist-schema = { version = "=0.27.1", path = "cargo-dist-schema" }
21-
axoproject = { version = "=0.27.1", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
20+
cargo-dist-schema = { version = "=0.28.0", path = "cargo-dist-schema" }
21+
axoproject = { version = "=0.28.0", path = "axoproject", default-features = false, features = ["cargo-projects", "generic-projects", "npm-projects"] }
2222

2323
# first-party deps
2424
axocli = { version = "0.2.0" }

0 commit comments

Comments
 (0)