brel 0.1.1 → 0.1.2
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 +33 -0
- package/README.md +20 -0
- package/npm-shrinkwrap.json +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
## [unreleased]
|
|
2
|
+
|
|
3
|
+
### 🐛 Bug Fixes
|
|
4
|
+
|
|
5
|
+
- Brel release resolution
|
|
6
|
+
|
|
7
|
+
### 💼 Other
|
|
8
|
+
|
|
9
|
+
- Git cliff & changelog
|
|
10
|
+
- Changelog generation
|
|
11
|
+
|
|
12
|
+
### ⚙️ Miscellaneous Tasks
|
|
13
|
+
|
|
14
|
+
- *(release)* V0.1.2
|
|
15
|
+
## [0.1.1] - 2026-02-17
|
|
16
|
+
|
|
17
|
+
### 💼 Other
|
|
18
|
+
|
|
19
|
+
- Npm publish
|
|
20
|
+
- Musl
|
|
21
|
+
|
|
22
|
+
### ⚙️ Miscellaneous Tasks
|
|
23
|
+
|
|
24
|
+
- 0.1.1 patch
|
|
25
|
+
## [0.1.0] - 2026-02-17
|
|
26
|
+
|
|
27
|
+
### 🚀 Features
|
|
28
|
+
|
|
29
|
+
- Initial
|
|
30
|
+
|
|
31
|
+
### 💼 Other
|
|
32
|
+
|
|
33
|
+
- Dist
|
package/README.md
CHANGED
|
@@ -46,6 +46,10 @@ default_branch = "main"
|
|
|
46
46
|
release_branch_pattern = "brel/release/v{{version}}"
|
|
47
47
|
pr_template_file = ".github/brel/release-pr-body.hbs"
|
|
48
48
|
|
|
49
|
+
[release_pr.changelog]
|
|
50
|
+
enabled = true
|
|
51
|
+
output_file = "CHANGELOG.md"
|
|
52
|
+
|
|
49
53
|
[release_pr.commit_author]
|
|
50
54
|
name = "brel[bot]"
|
|
51
55
|
email = "brel[bot]@users.noreply.github.com"
|
|
@@ -82,6 +86,22 @@ Example key paths:
|
|
|
82
86
|
- JSON: `"package.json" = ["version", "tooling.release.version"]`
|
|
83
87
|
- TOML: `"Cargo.toml" = ["package.version"]`
|
|
84
88
|
|
|
89
|
+
## Changelog Generation (`git-cliff`)
|
|
90
|
+
|
|
91
|
+
- `brel init` generates a workflow that runs [`orhun/git-cliff-action@v4`](https://github.com/orhun/git-cliff-action) by default.
|
|
92
|
+
- Configure changelog behavior with `[release_pr.changelog]`:
|
|
93
|
+
- `enabled` (default `true`)
|
|
94
|
+
- `output_file` (default `"CHANGELOG.md"`)
|
|
95
|
+
- If changelog generation is enabled, `brel release-pr` stages `output_file` in the release commit when that file exists.
|
|
96
|
+
- Disable changelog generation:
|
|
97
|
+
|
|
98
|
+
```toml
|
|
99
|
+
[release_pr.changelog]
|
|
100
|
+
enabled = false
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
- `brel init` does not create or manage `cliff.toml`; keep that file in your repository if you want custom `git-cliff` rules.
|
|
104
|
+
|
|
85
105
|
## Branch / Commit / PR Behavior
|
|
86
106
|
|
|
87
107
|
- Default branch pattern: `brel/release/v{{version}}`
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"hasInstallScript": true,
|
|
24
24
|
"license": "MIT",
|
|
25
25
|
"name": "brel",
|
|
26
|
-
"version": "0.1.
|
|
26
|
+
"version": "0.1.2"
|
|
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.1.
|
|
518
|
+
"version": "0.1.2"
|
|
519
519
|
}
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"artifactDownloadUrl": "https://github.com/better-releases/brel/releases/download/0.1.
|
|
2
|
+
"artifactDownloadUrl": "https://github.com/better-releases/brel/releases/download/0.1.2",
|
|
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.1.
|
|
100
|
+
"version": "0.1.2",
|
|
101
101
|
"volta": {
|
|
102
102
|
"node": "18.14.1",
|
|
103
103
|
"npm": "9.5.0"
|