Skip to content

Commit bcfa872

Browse files
gregghclaude
andcommitted
Release: Bump version to 0.4.2
- Added TelescopePrompt and TelescopeResults to ignored filetypes - Added artisan-output to ignored filetypes for Laravel Helper integration - Consolidated duplicate filetype ignore lists - Fixed test runner not properly exiting after tests - Improved which-key handling in test environment 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 01aa7ef commit bcfa872

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ All notable changes to this Neovim configuration 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+
- Added "TelescopePrompt" and "TelescopeResults" to ignored filetypes to prevent autocompletion
12+
- Added "artisan-output" to ignored filetypes for Laravel Helper integration
13+
- Consolidated duplicate filetype ignore lists into a single global list
14+
- Fixed test runner not properly exiting after tests
15+
- Improved handling of which-key in test environment
16+
817
## [0.4.1] - 2025-03-03
918

1019
### Changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![GitHub Issues](https://img.shields.io/github/issues/greggh/nvim?style=flat-square)](https://github.com/greggh/nvim/issues)
1010
[![GitHub Last Commit](https://img.shields.io/github/last-commit/greggh/nvim?style=flat-square)](https://github.com/greggh/nvim/commits/main)
1111
[![Neovim Version](https://img.shields.io/badge/Neovim-0.10%2B-blueviolet?style=flat-square&logo=neovim)](https://github.com/neovim/neovim/releases/tag/v0.10.0)
12-
[![Version](https://img.shields.io/badge/Version-0.4.1-blue?style=flat-square)](https://github.com/greggh/nvim/releases/tag/v0.4.1)
12+
[![Version](https://img.shields.io/badge/Version-0.4.2-blue?style=flat-square)](https://github.com/greggh/nvim/releases/tag/v0.4.2)
1313
[![Dotfyle](https://dotfyle.com/greggh/nvim/badges/plugins?style=flat-square)](https://dotfyle.com/greggh/nvim)
1414
[![Dotfyle](https://dotfyle.com/greggh/nvim/badges/leaderkey?style=flat-square)](https://dotfyle.com/greggh/nvim)
1515
[![Dotfyle](https://dotfyle.com/greggh/nvim/badges/plugin-manager?style=flat-square)](https://dotfyle.com/greggh/nvim)

lua/version.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
local M = {
88
major = 0,
99
minor = 4,
10-
patch = 1,
10+
patch = 2,
1111
}
1212

1313
--- Returns the formatted version string

0 commit comments

Comments
 (0)