diff --git a/.github/.release-please-manifest.json b/.github/.release-please-manifest.json index 8af0208..8aab173 100644 --- a/.github/.release-please-manifest.json +++ b/.github/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "11.4.0" + ".": "11.4.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index f53dbe9..741e766 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [11.4.1](https://github.com/folke/lazy.nvim/compare/v11.4.0...v11.4.1) (2024-06-25) + + +### Bug Fixes + +* **health:** show what plugins need luarocks and if none, use warnings instead of errors. See [#1551](https://github.com/folke/lazy.nvim/issues/1551) ([0d9fd63](https://github.com/folke/lazy.nvim/commit/0d9fd636beb9e3783edcdba2b31932280bdc05f7)) + ## [11.4.0](https://github.com/folke/lazy.nvim/compare/v11.3.0...v11.4.0) (2024-06-25) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index cf639f6..daa9ce3 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -197,7 +197,7 @@ M.defaults = { debug = false, } -M.version = "11.4.0" -- x-release-please-version +M.version = "11.4.1" -- x-release-please-version M.ns = vim.api.nvim_create_namespace("lazy")