super-release 1.12.1 → 1.13.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/README.md CHANGED
@@ -218,8 +218,23 @@ release may differ after a squash-merge. Requires `pull-requests: write` permiss
218
218
  | `feat: ...` | minor |
219
219
  | `feat!: ...` or `BREAKING CHANGE:` in footer | major |
220
220
  | `perf: ...` | patch |
221
+ | `Revert "..."` or `revert: ...` with a `This reverts commit <sha>` footer | patch |
221
222
  | `chore: ...`, `docs: ...`, `ci: ...`, `refactor: ...` | no release |
222
223
 
224
+ ### Reverts
225
+
226
+ Revert commits behave exactly like they do in
227
+ [semantic-release](https://semantic-release.gitbook.io/semantic-release/support/faq#how-can-i-revert-a-release):
228
+
229
+ - Reverting an **already-released** commit triggers a **patch** release, and the revert shows up in the changelog and
230
+ release notes under a `◀️ Revert` section.
231
+ - If a commit **and its revert** both land in the same unreleased range, they cancel each other out (per package) and
232
+ neither counts toward the release.
233
+ - The message `git revert` produces (`Revert "feat: ..."` plus `This reverts commit <sha>.`) works out of the box — no
234
+ editing needed. The Angular-style `revert: feat: ...` form is supported too.
235
+ - A `revert:` commit **without** the `This reverts commit <sha>` footer does not trigger a release (matching
236
+ semantic-release's default release rules).
237
+
223
238
  ## Configuration
224
239
 
225
240
  Create a `.release.yaml` in your repository root. JSON (`.release.json`) and JSONC (`.release.jsonc`) are also
@@ -1 +1 @@
1
- 1a34da741adc8ce8311a44aab32ff1fadcce49f42608338fabfed4e30709481f super-release-darwin-aarch64.tar.gz
1
+ 5afbfca71915da0adbdd0cf1628be15f455d3f1d27086679eb70ae1ef56556bf super-release-darwin-aarch64.tar.gz
@@ -1 +1 @@
1
- 1453362bfabbda76679f299971ab25df48cfae859e3dc49457aacbe344c1c259 super-release-darwin-x86_64.tar.gz
1
+ 07ae403e816c44da68e2fe7d63494e96dec564ddb70f18e42f2bb7d9f997f3d7 super-release-darwin-x86_64.tar.gz
@@ -1 +1 @@
1
- 19c1ddb6bee2319f38cb7c4c40be82d88e63e20e70d94bf3d32f94bf7726ebf2 super-release-linux-aarch64-musl.tar.gz
1
+ c50653ae0d18d763e6f8afe7235c93c7e2acf9475f128b9a2f9404c607541f71 super-release-linux-aarch64-musl.tar.gz
@@ -1 +1 @@
1
- db143470bcec6271ec88e5761a9a47753a8ae106d2e0dfd00271092df9f8f5fb super-release-linux-aarch64.tar.gz
1
+ b33d00e5209c0f8d96eb02f598a8e3bea9af419266dce2f5c95756adda80043f super-release-linux-aarch64.tar.gz
@@ -1 +1 @@
1
- c54fe02d10ac4f60b278798f35e76649ea522661af4ba55cccf69891e1104eca super-release-linux-x86_64-musl.tar.gz
1
+ a776b2f663d4b30080d31131ce3dc84cb38a708523e82d33962623aae6078e6b super-release-linux-x86_64-musl.tar.gz
@@ -1 +1 @@
1
- 7f22185f9ca489915b8103883991c97ee290ac4daeb19eb03616bf00b6ea7c54 super-release-linux-x86_64.tar.gz
1
+ 24365c12059bd9cb3c16e152b445cdc50cae70536af23c20c7345193b9e46525 super-release-linux-x86_64.tar.gz
@@ -1 +1 @@
1
- 55C42C00434E21C3100C0503939AF34AF1521044886B372C6B53C57F910E51A1
1
+ DE8F3FD920A072B161CE3778AB7BBBEEF7760AC7D6887303188B9DAB6D2A414F
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "super-release",
3
- "version": "1.12.1",
3
+ "version": "1.13.1",
4
4
  "description": "A fast semantic-release alternative for monorepos, written in Rust",
5
5
  "keywords": [
6
6
  "changelog",
@@ -28,11 +28,11 @@
28
28
  "provenance": true
29
29
  },
30
30
  "optionalDependencies": {
31
- "super-release-darwin-arm64": "1.10.1",
32
- "super-release-darwin-x64": "1.10.1",
33
- "super-release-linux-arm64": "1.10.1",
34
- "super-release-linux-x64": "1.10.1",
35
- "super-release-windows-x64": "1.10.1"
31
+ "super-release-darwin-arm64": "1.11.1",
32
+ "super-release-darwin-x64": "1.11.1",
33
+ "super-release-linux-arm64": "1.11.1",
34
+ "super-release-linux-x64": "1.11.1",
35
+ "super-release-windows-x64": "1.11.1"
36
36
  },
37
37
  "engines": {
38
38
  "node": ">=20"