Skip to content

Commit 4c230f0

Browse files
committed
chore: manually editing changelog items
1 parent d0d3ae4 commit 4c230f0

10 files changed

+66
-22
lines changed

CHANGELOG.md

Lines changed: 34 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,47 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [0.2.0] - 2026-01-19
99

1010
### Added
1111

12-
- New clauses get 'since' field set to RFC's current version (WI-2026-01-19-002)
13-
- No W0102 warnings for newly created clauses (WI-2026-01-19-002)
14-
- CLI command 'govctl delete clause' implemented with proper argument parsing (WI-2026-01-19-001)
15-
- Safety check: Only draft RFCs allow clause deletion (WI-2026-01-19-001)
16-
- Atomically removes clause file and updates parent RFC's clauses array (WI-2026-01-19-001)
17-
- Tests pass for both successful deletion and safety rejection (WI-2026-01-19-001)
1812
- `govctl describe --json` outputs machine-readable command catalog (WI-2026-01-18-003)
1913
- `govctl describe --context --json` outputs project state with suggested actions (WI-2026-01-18-003)
2014
- Command metadata includes `when_to_use` semantic guidance (WI-2026-01-18-003)
2115
- All existing commands covered in describe output (WI-2026-01-18-003)
16+
- CLI command 'govctl clause delete' implemented with proper argument parsing (WI-2026-01-19-001)
17+
- Atomically removes clause file and updates parent RFC's clauses array (WI-2026-01-19-001)
18+
- CLI command 'work delete' implemented (WI-2026-01-19-003)
19+
- Only queue-status work items can be deleted (WI-2026-01-19-003)
20+
- Reference check prevents deletion if work item is referenced (WI-2026-01-19-003)
21+
- completions command implemented (WI-2026-01-19-004)
22+
- works for bash/zsh/fish/powershell (WI-2026-01-19-004)
23+
- Auto-detection from ID format working (WI-2026-01-19-005)
24+
- Optional type flags available (WI-2026-01-19-005)
25+
- Support RFC amendments via version bumping and changelog (WI-2026-01-19-006)
26+
- Add signature field to RfcSpec model (WI-2026-01-19-007)
27+
- Implement govctl bump command for version bumping (WI-2026-01-19-007)
28+
- Display asterisk indicator for amended RFCs in list output (WI-2026-01-19-007)
29+
- All resource commands use <resource> <verb> structure per [[RFC-0002:C-RESOURCE-MODEL]] (WI-2026-01-19-008)
30+
- Canonical command pattern eliminates duplication (WI-2026-01-19-008)
31+
- Add -n short flag to --limit on all list commands (rfc, clause, adr, work) (WI-2026-01-19-009)
32+
- New sync-commands command to update AI IDE commands (WI-2026-01-19-010)
33+
- Configurable commands_dir in config.toml for different AI IDEs (WI-2026-01-19-010)
34+
35+
### Changed
36+
37+
- Remove 'normative = frozen' validation constraint (WI-2026-01-19-006)
38+
- Update .claude/CLAUDE.md to use --dry-run without -n (WI-2026-01-19-009)
39+
- Update assets/*.md files to use resource-first command syntax (WI-2026-01-19-010)
40+
41+
### Removed
42+
43+
- Old verb-first commands removed per [[ADR-0018]] (WI-2026-01-19-008)
44+
- Remove -n short flag from global --dry-run (WI-2026-01-19-009)
45+
46+
### Fixed
47+
48+
- New clauses get 'since' field set to RFC's current version (WI-2026-01-19-002)
2249

2350
## [0.1.0] - 2026-01-18
2451

gov/releases.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
[[releases]]
2+
version = "0.2.0"
3+
date = "2026-01-19"
4+
refs = [
5+
"WI-2026-01-18-003",
6+
"WI-2026-01-19-001",
7+
"WI-2026-01-19-002",
8+
"WI-2026-01-19-003",
9+
"WI-2026-01-19-004",
10+
"WI-2026-01-19-005",
11+
"WI-2026-01-19-006",
12+
"WI-2026-01-19-007",
13+
"WI-2026-01-19-008",
14+
"WI-2026-01-19-009",
15+
"WI-2026-01-19-010",
16+
]
17+
118
[[releases]]
219
version = "0.1.0"
320
date = "2026-01-18"

gov/work/2026-01-19-add-delete-command-for-clauses.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ Add a `delete` command to safely remove accidentally-created clauses from draft
1414
Currently users must manually delete the JSON file and edit the parent RFC's clauses array."""
1515

1616
[[content.acceptance_criteria]]
17-
text = "CLI command 'govctl delete clause' implemented with proper argument parsing"
17+
text = "CLI command 'govctl clause delete' implemented with proper argument parsing"
1818
status = "done"
1919
category = "added"
2020

2121
[[content.acceptance_criteria]]
2222
text = "Safety check: Only draft RFCs allow clause deletion"
2323
status = "done"
24-
category = "added"
24+
category = "chore"
2525

2626
[[content.acceptance_criteria]]
2727
text = "Atomically removes clause file and updates parent RFC's clauses array"
@@ -31,4 +31,4 @@ category = "added"
3131
[[content.acceptance_criteria]]
3232
text = "Tests pass for both successful deletion and safety rejection"
3333
status = "done"
34-
category = "added"
34+
category = "chore"

gov/work/2026-01-19-add-delete-command-for-work-items.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ be deleted. Reference checking prevents deletion of work items that are still \
1414
referenced by other documents to maintain referential integrity."""
1515

1616
[[content.acceptance_criteria]]
17-
text = "CLI command 'delete work' implemented"
17+
text = "CLI command 'work delete' implemented"
1818
status = "done"
1919
category = "added"
2020

@@ -31,4 +31,4 @@ category = "added"
3131
[[content.acceptance_criteria]]
3232
text = "Tests verify both successful deletion and safety rejection"
3333
status = "done"
34-
category = "added"
34+
category = "chore"

gov/work/2026-01-19-add-shell-autocompletion-support-for-all-commands.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Future: Dynamic completion (artifact IDs, field names)"""
1919
[[content.acceptance_criteria]]
2020
text = "clap_complete dependency added"
2121
status = "done"
22-
category = "added"
22+
category = "chore"
2323

2424
[[content.acceptance_criteria]]
2525
text = "completions command implemented"
@@ -34,4 +34,4 @@ category = "added"
3434
[[content.acceptance_criteria]]
3535
text = "documentation added"
3636
status = "done"
37-
category = "added"
37+
category = "chore"

gov/work/2026-01-19-allow-rfc-amendments-during-implementation-via-versioning.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ and changelog documentation, following the evolution model defined in RFC-0001."
2020
[[content.acceptance_criteria]]
2121
text = "Remove 'normative = frozen' validation constraint"
2222
status = "done"
23-
category = "added"
23+
category = "changed"
2424

2525
[[content.acceptance_criteria]]
2626
text = "Support RFC amendments via version bumping and changelog"
@@ -35,4 +35,4 @@ category = "chore"
3535
[[content.acceptance_criteria]]
3636
text = "Update CLAUDE.md to reflect RFC evolution model"
3737
status = "done"
38-
category = "changed"
38+
category = "chore"

gov/work/2026-01-19-fix-new-clause-to-set-since-field-from-rfc-version.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ for newly created clauses and ensures proper version tracking from creation."""
1616
[[content.acceptance_criteria]]
1717
text = "New clauses get 'since' field set to RFC's current version"
1818
status = "done"
19-
category = "added"
19+
category = "fixed"
2020

2121
[[content.acceptance_criteria]]
2222
text = "No W0102 warnings for newly created clauses"
2323
status = "done"
24-
category = "added"
24+
category = "chore"

gov/work/2026-01-19-implement-adr-0019-reassign-n-flag-from-dry-run-to-limit.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ What is the goal? What are the acceptance criteria?"""
1616
[[content.acceptance_criteria]]
1717
text = "Remove -n short flag from global --dry-run"
1818
status = "done"
19-
category = "added"
19+
category = "removed"
2020

2121
[[content.acceptance_criteria]]
2222
text = "Add -n short flag to --limit on all list commands (rfc, clause, adr, work)"

gov/work/2026-01-19-implement-rfc-0002-resource-first-cli-structure.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,4 +143,4 @@ category = "chore"
143143
[[content.acceptance_criteria]]
144144
text = "Old verb-first commands removed per [[ADR-0018]]"
145145
status = "done"
146-
category = "added"
146+
category = "removed"

gov/work/2026-01-19-improve-delete-command-with-auto-detection-and-optional-type-flags.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ category = "added"
3030
[[content.acceptance_criteria]]
3131
text = "Tests updated"
3232
status = "done"
33-
category = "added"
33+
category = "chore"
3434

3535
[[content.acceptance_criteria]]
3636
text = "Documentation updated"
3737
status = "done"
38-
category = "added"
38+
category = "chore"

0 commit comments

Comments
 (0)