Skip to content

Commit d16fc72

Browse files
committed
fix: A small bug about ADDED REMOVED
--bug=1
1 parent b96979f commit d16fc72

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@studyzy/openspec-cn",
3-
"version": "0.16.0",
3+
"version": "0.16.0-1",
44
"description": "面向AI编程助手的规范驱动开发框架OpenSpec的简体中文汉化版本",
55
"keywords": [
66
"openspec",

src/commands/change.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export class ChangeCommand {
282282

283283
private printNextSteps(): void {
284284
const bullets: string[] = [];
285-
bullets.push('- 确保变更在specs/中有增量:使用标题## ADDED/MODIFIED/REMOVED/RENAMED Requirements');
285+
bullets.push('- 确保变更在specs/中有增量:使用标题## 新增|修改|移除|重命名需求');
286286
bullets.push('- 每个需求必须至少包含一个#### 场景:块');
287287
bullets.push('- 调试解析的增量:openspec-cn change show <id> --json --deltas-only');
288288
console.error('后续步骤:');

src/commands/validate.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export class ValidateCommand {
168168
private printNextSteps(type: ItemType): void {
169169
const bullets: string[] = [];
170170
if (type === 'change') {
171-
bullets.push('- 确保变更在specs/中有增量:使用标题## ADDED/MODIFIED/REMOVED/RENAMED Requirements');
171+
bullets.push('- 确保变更在specs/中有增量:使用标题## 新增|修改|移除|重命名需求');
172172
bullets.push('- 每个需求必须至少包含一个#### 场景:块');
173173
bullets.push('- 调试解析的增量:openspec-cn change show <id> --json --deltas-only');
174174
} else {

0 commit comments

Comments
 (0)