diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f70bd8..ee73128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/README.md b/README.md index 812d30a..5a33a02 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/docs/release-notes-v0.1.1.md b/docs/release-notes-v0.1.1.md new file mode 100644 index 0000000..598a9a5 --- /dev/null +++ b/docs/release-notes-v0.1.1.md @@ -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 , and Vulkanite is released under the MIT License.