Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 80611ed

Browse files
committed
Add powershell installer
1 parent 2bd7927 commit 80611ed

4 files changed

Lines changed: 28 additions & 8 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
# we specify bash to get pipefail; it guards against the `curl` command
6565
# failing. otherwise `sh` won't catch that `curl` returned non-0
6666
shell: bash
67-
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.3/cargo-dist-installer.sh | sh"
67+
run: "curl --proto '=https' --tlsv1.2 -LsSf https://github.com/axodotdev/cargo-dist/releases/download/v0.30.2/cargo-dist-installer.sh | sh"
6868
- name: Cache dist
6969
uses: actions/upload-artifact@v4
7070
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2.0.5 - 2025-12-31
2+
3+
Add Powershell installer
4+
15
## 2.0.4 - 2025-12-31
26

37
Fix #3: `lockdiff` can now parse `package-lock.json` when it contains

dist-workspace.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ members = ["cargo:."]
44
# Config for 'dist'
55
[dist]
66
# The preferred dist version to use in CI (Cargo.toml SemVer syntax)
7-
cargo-dist-version = "0.30.3"
7+
cargo-dist-version = "0.30.2"
88
# CI backends to support
99
ci = "github"
1010
# The installers to generate for each app
11-
installers = ["shell", "npm"]
11+
installers = ["shell", "powershell", "npm"]
1212
# Target platforms to build apps for (Rust target-triple syntax)
1313
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
1414
# Which actions to run on pull requests

skyspell-ignore.toml

Lines changed: 21 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
patterns = ["Cargo.lock", "dist-workspace.toml"]
1+
patterns = [
2+
"Cargo.lock",
3+
"dist-workspace.toml",
4+
]
25
project = [
36
"Gemfile",
47
"Lockdiff",
58
"Npm",
9+
"Powershell",
610
"Toml",
711
"autogenerated",
812
"clippy",
@@ -21,9 +25,21 @@ project = [
2125

2226
[paths]
2327
"Cargo.toml" = ["lto"]
24-
25-
"src/lib.rs" = ["anyio", "asgiref", "autodoc", "idna", "rtd", "typehints"]
26-
"src/python.rs" = ["asgiref", "django"]
27-
"src/ruby.rs" = ["lcs", "rspec"]
28+
"src/lib.rs" = [
29+
"anyio",
30+
"asgiref",
31+
"autodoc",
32+
"idna",
33+
"rtd",
34+
"typehints",
35+
]
36+
"src/python.rs" = [
37+
"asgiref",
38+
"django",
39+
]
40+
"src/ruby.rs" = [
41+
"lcs",
42+
"rspec",
43+
]
2844

2945
[skipped]

0 commit comments

Comments
 (0)