cuke-dedup 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,18 @@
3
3
  All notable changes to CukeDedup are documented in this file. The project follows
4
4
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
5
5
 
6
+ ## [0.1.1] - 2026-09-08
7
+
8
+ ### Changed
9
+
10
+ - Upgraded `tree-sitter` to 0.27.0 and `taiki-e/install-action` to 2.87.5.
11
+
12
+ ### Fixed
13
+
14
+ - Added package-specific READMEs to native npm distributions.
15
+ - Adopted conventional `windows-*-msvc` names for the Windows npm packages.
16
+ - Made npm publication safe to retry after a partial release.
17
+
6
18
  ## [0.1.0] - 2026-09-07
7
19
 
8
20
  Initial public release.
@@ -16,4 +28,5 @@ Initial public release.
16
28
  - Native Cargo and npm distributions for eight supported targets.
17
29
  - A checksum-verified GitHub Action and an agent-oriented CukeDedup skill.
18
30
 
31
+ [0.1.1]: https://github.com/figueiredoluiz/cuke-dedup/compare/v0.1.0...v0.1.1
19
32
  [0.1.0]: https://github.com/figueiredoluiz/cuke-dedup/releases/tag/v0.1.0
package/README.md CHANGED
@@ -277,7 +277,7 @@ steps:
277
277
  with:
278
278
  fetch-depth: 0
279
279
  persist-credentials: false
280
- - uses: figueiredoluiz/cuke-dedup@v0.1.0
280
+ - uses: figueiredoluiz/cuke-dedup@v0.1.1
281
281
  id: cuke-dedup
282
282
  with:
283
283
  path: .
@@ -77,7 +77,7 @@ regenerated whenever `Cargo.lock` changes.
77
77
  | thiserror-impl | 2.0.20 | MIT OR Apache-2.0 | David Tolnay <dtolnay@gmail.com> | https://github.com/dtolnay/thiserror |
78
78
  | tinyvec | 1.12.0 | Zlib OR Apache-2.0 OR MIT | Lokathor <zefria@gmail.com> | https://github.com/Lokathor/tinyvec |
79
79
  | tinyvec_macros | 0.1.1 | MIT OR Apache-2.0 OR Zlib | Soveu <marx.tomasz@gmail.com> | https://github.com/Soveu/tinyvec_macros |
80
- | tree-sitter | 0.26.13 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter |
80
+ | tree-sitter | 0.27.0 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter |
81
81
  | tree-sitter-javascript | 0.25.0 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter-javascript |
82
82
  | tree-sitter-language | 0.1.8 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter |
83
83
  | tree-sitter-typescript | 0.23.2 | MIT | Max Brunsfeld <maxbrunsfeld@gmail.com>, Amaan Qureshi <amaanq12@gmail.com> | https://github.com/tree-sitter/tree-sitter-typescript |
@@ -61,7 +61,7 @@
61
61
  },
62
62
  "win32-arm64": {
63
63
  "rustTarget": "aarch64-pc-windows-msvc",
64
- "packageName": "cuke-dedup-win32-arm64",
64
+ "packageName": "cuke-dedup-windows-arm64-msvc",
65
65
  "packageDirectory": "win32-arm64",
66
66
  "platform": "win32",
67
67
  "arch": "arm64",
@@ -70,7 +70,7 @@
70
70
  },
71
71
  "win32-x64": {
72
72
  "rustTarget": "x86_64-pc-windows-msvc",
73
- "packageName": "cuke-dedup-win32-x64",
73
+ "packageName": "cuke-dedup-windows-x64-msvc",
74
74
  "packageDirectory": "win32-x64",
75
75
  "platform": "win32",
76
76
  "arch": "x64",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cuke-dedup",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Static analysis for duplicate and reusable Cucumber step definitions",
5
5
  "type": "module",
6
6
  "bin": {
@@ -45,13 +45,13 @@
45
45
  "npm/platforms/*"
46
46
  ],
47
47
  "optionalDependencies": {
48
- "cuke-dedup-darwin-arm64": "0.1.0",
49
- "cuke-dedup-darwin-x64": "0.1.0",
50
- "cuke-dedup-linux-arm64-gnu": "0.1.0",
51
- "cuke-dedup-linux-arm64-musl": "0.1.0",
52
- "cuke-dedup-linux-x64-gnu": "0.1.0",
53
- "cuke-dedup-linux-x64-musl": "0.1.0",
54
- "cuke-dedup-win32-arm64": "0.1.0",
55
- "cuke-dedup-win32-x64": "0.1.0"
48
+ "cuke-dedup-darwin-arm64": "0.1.1",
49
+ "cuke-dedup-darwin-x64": "0.1.1",
50
+ "cuke-dedup-linux-arm64-gnu": "0.1.1",
51
+ "cuke-dedup-linux-arm64-musl": "0.1.1",
52
+ "cuke-dedup-linux-x64-gnu": "0.1.1",
53
+ "cuke-dedup-linux-x64-musl": "0.1.1",
54
+ "cuke-dedup-windows-arm64-msvc": "0.1.1",
55
+ "cuke-dedup-windows-x64-msvc": "0.1.1"
56
56
  }
57
57
  }