Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@ release versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

## [Unreleased]

## [0.1.1] - 2026-07-29

### Added

- Added automatic and explicit highlight integration for bufferline.nvim.
- Added an independently configurable `unnecessary` diagnostic color.

### Changed

- Highlight active tabs with the secondary accent and render LSP-tagged unnecessary code in subdued slate grey.
- Active native tabs and selected bufferline buffers now use the secondary teal accent.
- LSP-tagged unnecessary code now uses subdued slate grey while preserving its syntax styling.

## [0.1.0] - 2026-07-19

Expand All @@ -21,5 +29,6 @@ release versions follow [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
- Bundled lualine theme, named 16-color palette, and complete Base16 compatibility mapping.
- Neovim help under `:help vulkanite`.

[Unreleased]: https://github.com/kyerpotts/vulkanite.nvim/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/kyerpotts/vulkanite.nvim/compare/v0.1.1...HEAD
[0.1.1]: https://github.com/kyerpotts/vulkanite.nvim/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/kyerpotts/vulkanite.nvim/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,5 @@ You can also read [`doc/vulkanite.txt`](doc/vulkanite.txt) directly.
## Project

Want to help? Read the [contributing guide](docs/CONTRIBUTING.md). You can also
find the [changelog](CHANGELOG.md), [release notes](docs/release-notes-v0.1.0.md),
find the [changelog](CHANGELOG.md), [latest release notes](docs/release-notes-v0.1.1.md),
and [MIT license](LICENSE) here.
19 changes: 19 additions & 0 deletions docs/release-notes-v0.1.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Vulkanite v0.1.1 release notes

Vulkanite v0.1.1 improves active-tab visibility and gives LSP-tagged unnecessary code a quieter, dedicated presentation.

## Highlights

- Active native Neovim tabs now use Vulkanite's secondary teal accent.
- Clean selected buffers in bufferline.nvim use the same secondary accent while retaining bold and italic styling.
- Selected buffers with diagnostics continue to use their severity color, including vivid red for errors.
- Code tagged unnecessary by an LSP now uses subdued slate grey while preserving its underlying syntax styling and diagnostic undercurls.

## Integration and configuration

- Added automatic and explicit highlight integration for bufferline.nvim.
- Added `unnecessary` to the public `on_colors` interface so the diagnostic color can be overridden independently.

## Requirements

Vulkanite continues to require Neovim 0.10 or later with true-color support. The canonical repository is <https://github.com/kyerpotts/vulkanite.nvim>, and Vulkanite is released under the MIT License.