diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f1b1a2..8e66b59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [9.6.0](https://github.com/folke/lazy.nvim/compare/v9.5.1...v9.6.0) (2023-02-07) + + +### Features + +* **cmd:** use cmd table instead of trying to create the cmd string. Fixes [#472](https://github.com/folke/lazy.nvim/issues/472) ([3c29f19](https://github.com/folke/lazy.nvim/commit/3c29f196f4b0f083f2b94c3337599a189f4eef84)) + ## [9.5.1](https://github.com/folke/lazy.nvim/compare/v9.5.0...v9.5.1) (2023-02-06) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 8b0a124..62ff3d7 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -146,7 +146,7 @@ M.defaults = { debug = false, } -M.version = "9.5.1" -- x-release-please-version +M.version = "9.6.0" -- x-release-please-version M.ns = vim.api.nvim_create_namespace("lazy")