brel 0.5.0 → 0.6.0
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 +6 -0
- package/README.md +9 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -7,6 +7,7 @@
|
|
|
7
7
|
- `brel init` generates a managed GitHub Actions workflow.
|
|
8
8
|
- `brel release-pr` computes the next version, updates configured files, commits, pushes, and creates/updates a release PR.
|
|
9
9
|
- `brel next-version` computes the next releasable version and prints it as plain SemVer.
|
|
10
|
+
- `brel validate` validates a config file and prints warnings for ignored keys.
|
|
10
11
|
|
|
11
12
|
## `release-pr` Prerequisites
|
|
12
13
|
|
|
@@ -23,6 +24,8 @@
|
|
|
23
24
|
2. `brel.toml`
|
|
24
25
|
3. `.brel.toml`
|
|
25
26
|
|
|
27
|
+
Use `brel validate` to check that an existing config file parses and satisfies the current schema before running other commands.
|
|
28
|
+
|
|
26
29
|
### Minimal `release-pr` config
|
|
27
30
|
|
|
28
31
|
```toml
|
|
@@ -207,6 +210,12 @@ Run with explicit config:
|
|
|
207
210
|
brel release-pr --config ./configs/release.toml
|
|
208
211
|
```
|
|
209
212
|
|
|
213
|
+
Validate config:
|
|
214
|
+
|
|
215
|
+
```bash
|
|
216
|
+
brel validate
|
|
217
|
+
```
|
|
218
|
+
|
|
210
219
|
Preview the next release version:
|
|
211
220
|
|
|
212
221
|
```bash
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "brel",
|
|
26
|
-
"version": "0.
|
|
26
|
+
"version": "0.6.0"
|
|
27
27
|
},
|
|
28
28
|
"node_modules/@isaacs/balanced-match": {
|
|
29
29
|
"engines": {
|
|
@@ -515,5 +515,5 @@
|
|
|
515
515
|
}
|
|
516
516
|
},
|
|
517
517
|
"requires": true,
|
|
518
|
-
"version": "0.
|
|
518
|
+
"version": "0.6.0"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/better-releases/brel/releases/download/0.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/better-releases/brel/releases/download/0.6.0",
|
|
3
3
|
"bin": {
|
|
4
4
|
"brel": "run-brel.js"
|
|
5
5
|
},
|
|
@@ -97,7 +97,7 @@
|
|
|
97
97
|
"zipExt": ".tar.xz"
|
|
98
98
|
}
|
|
99
99
|
},
|
|
100
|
-
"version": "0.
|
|
100
|
+
"version": "0.6.0",
|
|
101
101
|
"volta": {
|
|
102
102
|
"node": "18.14.1",
|
|
103
103
|
"npm": "9.5.0"
|