Skip to content

Commit 84d532d

Browse files
committed
docs(changelog): add 0.3.1 release notes
Move CLI improvements (version display, update notification) to 0.3.1 section
1 parent 6ec5b8f commit 84d532d

2 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.3.1] - 2025-12-12
11+
12+
### Added
13+
14+
#### CLI Improvements
15+
16+
- **Version display** in startup banner
17+
- **Update notification** - automatically checks npm for newer versions and displays upgrade instructions
18+
1019
## [0.3.0] - 2025-12-12
1120

1221
### Added
@@ -21,11 +30,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2130
- Skip conditions for conditional step execution
2231
- Graceful cancellation handling integrated with existing ESC support
2332

24-
#### CLI Improvements
25-
26-
- **Version display** in startup banner
27-
- **Update notification** - automatically checks npm for newer versions and displays upgrade instructions
28-
2933
## [0.2.0] - 2025-12-10
3034

3135
### Added
@@ -233,6 +237,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
233237
- TypeScript 5.7+
234238
- Node.js 18+ required
235239

240+
[0.3.1]: https://github.com/qazuor/claude-code-config/releases/tag/v0.3.1
236241
[0.3.0]: https://github.com/qazuor/claude-code-config/releases/tag/v0.3.0
237242
[0.2.0]: https://github.com/qazuor/claude-code-config/releases/tag/v0.2.0
238243
[0.1.0]: https://github.com/qazuor/claude-code-config/releases/tag/v0.1.0

test/unit/utils/version-check.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Tests for version-check utility
33
*/
44

5-
import { describe, expect, it, vi, beforeEach, afterEach } from 'vitest';
5+
import { afterEach, beforeEach, describe, expect, it, vi } from 'vitest';
66

77
// Mock fetch globally
88
const mockFetch = vi.fn();

0 commit comments

Comments
 (0)