Skip to content

Commit 9feed06

Browse files
gregghclaude
andcommitted
Bump version to 0.4.1
This release includes: - Improved GitHub workflows with consolidated documentation checks - Enhanced release workflow with reliable changelog generation - Fixed deprecated changelog generator - Streamlined workflow architecture - Improved error handling in GitHub workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 53d9af9 commit 9feed06

4 files changed

Lines changed: 19 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ 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.1] - 2025-03-03
9+
10+
### Changed
11+
- Improved GitHub workflows with consolidated documentation checks
12+
- Enhanced release workflow with more reliable changelog generation
13+
- Updated dependency handling in CI workflows
14+
- Refined workflow trigger conditions for better performance
15+
16+
### Fixed
17+
- Fixed deprecated changelog generator in release workflow
18+
- Fixed documentation validation in CI pipeline
19+
- Resolved Markdown linting and validation issues
20+
- Improved error handling in GitHub workflows
21+
822
## [0.4.0] - 2025-03-02
923

1024
### Added

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.3.0-blue?style=flat-square)](https://github.com/greggh/claude-code.nvim/releases/tag/v0.3.0)
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)
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.3.0 - See [CHANGELOG.md](CHANGELOG.md) for details
66+
Current version: 0.4.0 - 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 = 0,
16+
patch = 1,
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.0', result)
12+
assert.are.equal('0.4.1', 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(0, version.patch)
24+
assert.are.equal(1, version.patch)
2525
end)
2626
end)
2727

0 commit comments

Comments
 (0)