@seanyao/roll 2026.510.9 → 2026.510.10
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 +7 -0
- package/bin/roll +1 -1
- package/package.json +1 -1
- package/skills/roll-.changelog/SKILL.md +14 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v2026.510.10
|
|
4
|
+
- **Fixed**: release.sh changelog 同步时序修复 — 修正条件逻辑和执行顺序,确保每次发版时 changelog 正确更新
|
|
5
|
+
|
|
6
|
+
## v2026.510.9
|
|
7
|
+
- **Fixed**: CHANGELOG 改版本号分组 — 每个 release 独立 section,GitHub Release 增量内容提取正确
|
|
8
|
+
- **Fixed**: release.yml 加 fetch-depth: 0,确保历史 tag 在 workflow 中可见
|
|
9
|
+
|
|
3
10
|
## v2026.510.8
|
|
4
11
|
- **Fixed**: release.sh 自洽 — 内联 agent 检测和 changelog 同步,发版流程不依赖外部调用
|
|
5
12
|
- **Fixed**: roll release 命令重构 — 改为独立调用 roll-release skill,与 scripts/release.sh 解耦
|
package/bin/roll
CHANGED
|
@@ -4,7 +4,7 @@ set -euo pipefail
|
|
|
4
4
|
# Roll — AI Agent Convention Manager
|
|
5
5
|
# Single source of truth for how all AI coding agents behave.
|
|
6
6
|
|
|
7
|
-
VERSION="2026.510.
|
|
7
|
+
VERSION="2026.510.10"
|
|
8
8
|
ROLL_HOME="${ROLL_HOME:-${HOME}/.roll}"
|
|
9
9
|
ROLL_CONFIG="${ROLL_HOME}/config.yaml"
|
|
10
10
|
ROLL_GLOBAL="${ROLL_HOME}/conventions/global"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@seanyao/roll",
|
|
3
|
-
"version": "2026.510.
|
|
3
|
+
"version": "2026.510.10",
|
|
4
4
|
"description": "Roll — Roll out features with AI agents",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "find tests/unit tests/integration -name '*.bats' | sort | xargs ./tests/helpers/bats-core/bin/bats"
|
|
@@ -76,12 +76,23 @@ Bad:
|
|
|
76
76
|
|
|
77
77
|
### 4. Version Number Format
|
|
78
78
|
|
|
79
|
+
Determine the current version being released:
|
|
80
|
+
|
|
81
|
+
```bash
|
|
82
|
+
VERSION=$(node -e "process.stdout.write(require('./package.json').version)" 2>/dev/null \
|
|
83
|
+
|| git describe --tags --abbrev=0 2>/dev/null | sed 's/^v//')
|
|
79
84
|
```
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
85
|
+
|
|
86
|
+
`package.json` is the authoritative source — it is updated before this skill runs. Fall back to git tags only if `package.json` is unavailable.
|
|
87
|
+
|
|
88
|
+
The CHANGELOG section header uses the full version string with a `v` prefix:
|
|
89
|
+
|
|
90
|
+
```
|
|
91
|
+
## v${VERSION}
|
|
83
92
|
```
|
|
84
93
|
|
|
94
|
+
For the human-readable date display within entries, use `YYYY.MM.DD` format.
|
|
95
|
+
|
|
85
96
|
### 5. Generate CHANGELOG.md
|
|
86
97
|
|
|
87
98
|
**Create mode** (first time):
|