super-release 0.1.0 → 0.2.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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +9 -2
  3. package/package.json +16 -16
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 David Heidrich
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # super-release
2
2
 
3
- A fast [semantic-release](https://semantic-release.gitbook.io/semantic-release) alternative for monorepos, written in Rust.
3
+ A fast and opinionated [semantic-release](https://semantic-release.gitbook.io/semantic-release) alternative for monorepos, written in Rust.
4
4
 
5
5
  Analyzes [conventional commits](https://www.conventionalcommits.org/) to determine version bumps, generate changelogs, update `package.json` files, publish to npm, and create git tags -- across all packages in a monorepo, in parallel.
6
6
 
@@ -303,6 +303,13 @@ Benchmark (2001 commits, 8 packages, Apple Silicon):
303
303
  | All commits since initial tag | 0.11s |
304
304
  | 100 commits since recent tags | 0.035s |
305
305
 
306
+ ## Acknowledgements
307
+
308
+ super-release is inspired by and builds on the ideas of:
309
+
310
+ - **[semantic-release](https://github.com/semantic-release/semantic-release)** — the original automated release tool that pioneered conventional-commit-based versioning. super-release follows the same philosophy but reimagines it in Rust with first-class monorepo support.
311
+ - **[git-cliff](https://github.com/orhun/git-cliff)** — powers the changelog generation via `git-cliff-core`. An excellent standalone changelog generator with rich templating support.
312
+
306
313
  ## License
307
314
 
308
- MIT
315
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,24 +1,16 @@
1
1
  {
2
- "name": "super-release",
3
- "version": "0.1.0",
4
- "type": "module",
5
- "description": "A fast semantic-release alternative for monorepos, written in Rust",
6
- "license": "MIT",
7
2
  "bin": {
8
3
  "super-release": "npm/bin/super-release.js"
9
4
  },
10
- "scripts": {
11
- "postinstall": "node npm/install.js"
5
+ "description": "A fast semantic-release alternative for monorepos, written in Rust",
6
+ "engines": {
7
+ "node": ">=18"
12
8
  },
13
9
  "files": [
14
10
  "npm/bin",
15
11
  "npm/install.js",
16
12
  "README.md"
17
13
  ],
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/bowlingx/super-release.git"
21
- },
22
14
  "keywords": [
23
15
  "semantic-release",
24
16
  "monorepo",
@@ -26,11 +18,19 @@
26
18
  "changelog",
27
19
  "conventional-commits"
28
20
  ],
21
+ "license": "MIT",
22
+ "name": "super-release",
29
23
  "publishConfig": {
30
- "access": "public"
24
+ "access": "public",
25
+ "provenance": true
31
26
  },
32
- "engines": {
33
- "node": ">=18"
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/BowlingX/super-release.git"
34
30
  },
35
- "packageManager": "pnpm@10.33.0+sha512.10568bb4a6afb58c9eb3630da90cc9516417abebd3fabbe6739f0ae795728da1491e9db5a544c76ad8eb7570f5c4bb3d6c637b2cb41bfdcdb47fa823c8649319"
36
- }
31
+ "type": "module",
32
+ "version": "0.2.1",
33
+ "scripts": {
34
+ "postinstall": "node npm/install.js"
35
+ }
36
+ }