rlsbl 0.121.2 → 0.121.4
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 +3 -1
- package/package.json +11 -4
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
# rlsbl
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
rlsbl is a release orchestration and project scaffolding CLI that bumps versions, validates a structured JSONL changelog, tags only the commit CI verified, and publishes to npm, PyPI, Go and more. It is for developers and AI agents who ship a repository -- one project, several targets at once, or a monorepo of independently versioned packages -- to public package registries. Its distinctive property is that the version is pushed first as an untagged candidate and becomes a tag only after the repository's own CI passes on that exact commit, so a red build leaves no tag, no GitHub Release and nothing on any registry.
|
|
10
10
|
|
|
11
11
|
## Install
|
|
12
12
|
|
|
@@ -35,6 +35,8 @@ rlsbl watch <sha> # monitor CI for that release
|
|
|
35
35
|
|
|
36
36
|
## Commands
|
|
37
37
|
|
|
38
|
+
Release orchestration and project scaffolding for npm, PyPI, Go, and [14 more release targets](https://rlsbl.smmh.dev/targets).
|
|
39
|
+
|
|
38
40
|
All commands auto-detect targets (versioning) from project files (`package.json`, `pyproject.toml`, `go.mod`) and pipelines (publishing) from `.rlsbl/config.json`. Targets handle version bumps; pipelines handle where releases are published.
|
|
39
41
|
|
|
40
42
|
| Command | Description |
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rlsbl",
|
|
3
|
-
"version": "0.121.
|
|
4
|
-
"description": "Release orchestration and project scaffolding
|
|
3
|
+
"version": "0.121.4",
|
|
4
|
+
"description": "Release orchestration and project scaffolding CLI that bumps versions, validates a structured JSONL changelog, tags only the commit CI verified, and publishes to npm, PyPI, Go and more",
|
|
5
|
+
"homepage": "https://smmh.dev/rlsbl/",
|
|
5
6
|
"license": "MIT",
|
|
6
7
|
"bin": {
|
|
7
8
|
"rlsbl": "bin/cli.js"
|
|
@@ -13,15 +14,21 @@
|
|
|
13
14
|
"type": "git",
|
|
14
15
|
"url": "git+https://github.com/smm-h/rlsbl.git"
|
|
15
16
|
},
|
|
17
|
+
"bugs": {
|
|
18
|
+
"url": "https://github.com/smm-h/rlsbl/issues"
|
|
19
|
+
},
|
|
16
20
|
"engines": {
|
|
17
21
|
"node": ">=18"
|
|
18
22
|
},
|
|
19
23
|
"keywords": [
|
|
20
24
|
"release",
|
|
25
|
+
"release-automation",
|
|
26
|
+
"changelog",
|
|
27
|
+
"versioning",
|
|
28
|
+
"monorepo",
|
|
21
29
|
"npm",
|
|
22
30
|
"pypi",
|
|
23
|
-
"
|
|
24
|
-
"cli",
|
|
31
|
+
"go",
|
|
25
32
|
"scaffold",
|
|
26
33
|
"rlsbl"
|
|
27
34
|
],
|