Skip to content

Commit 4275a95

Browse files
gregghclaude
andcommitted
Release: Bump version to 0.4.2
- Fixed test runner not properly exiting after tests - Improved which-key handling in test environment - Fixed window focus issues in terminal split 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent d741309 commit 4275a95

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ 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.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.4.2] - 2025-03-03
9+
10+
### Fixed
11+
- Fixed test runner not properly exiting after tests
12+
- Improved which-key handling in test environment
13+
- Fixed window focus issues in terminal split
14+
815
## [0.4.1] - 2025-03-03
916

1017
### Changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
[![CI](https://img.shields.io/github/actions/workflow/status/greggh/claude-code.nvim/ci.yml?branch=main&style=flat-square&logo=github)](https://github.com/greggh/claude-code.nvim/actions/workflows/ci.yml)
99
[![Neovim Version](https://img.shields.io/badge/Neovim-0.7%2B-blueviolet?style=flat-square&logo=neovim)](https://github.com/neovim/neovim)
1010
[![Tests](https://img.shields.io/badge/Tests-44%20passing-success?style=flat-square&logo=github-actions)](https://github.com/greggh/claude-code.nvim/actions/workflows/ci.yml)
11-
[![Version](https://img.shields.io/badge/Version-0.4.1-blue?style=flat-square)](https://github.com/greggh/claude-code.nvim/releases/tag/v0.4.1)
11+
[![Version](https://img.shields.io/badge/Version-0.4.2-blue?style=flat-square)](https://github.com/greggh/claude-code.nvim/releases/tag/v0.4.2)
1212

1313
*A seamless integration between [Claude Code](https://github.com/anthropics/claude-code) AI assistant and Neovim*
1414

@@ -63,7 +63,7 @@ This plugin was built entirely with Claude Code in a Neovim terminal, and then i
6363

6464
## Version
6565

66-
Current version: 0.4.0 - See [CHANGELOG.md](CHANGELOG.md) for details
66+
Current version: 0.4.2 - See [CHANGELOG.md](CHANGELOG.md) for details
6767

6868
## Installation
6969

lua/claude-code/version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
local M = {
1414
major = 0,
1515
minor = 4,
16-
patch = 1,
16+
patch = 2,
1717
}
1818

1919
--- Returns the formatted version string

tests/spec/version_spec.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ describe('version', function()
99
describe('string', function()
1010
it('should return the correct version string', function()
1111
local result = version.string()
12-
assert.are.equal('0.4.1', result)
12+
assert.are.equal('0.4.2', result)
1313
assert.are.equal(
1414
string.format('%d.%d.%d', version.major, version.minor, version.patch),
1515
result
@@ -21,7 +21,7 @@ describe('version', function()
2121
it('should have correct version components', function()
2222
assert.are.equal(0, version.major)
2323
assert.are.equal(4, version.minor)
24-
assert.are.equal(1, version.patch)
24+
assert.are.equal(2, version.patch)
2525
end)
2626
end)
2727

0 commit comments

Comments
 (0)