diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d06808..c6ce672 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [10.2.0](https://github.com/folke/lazy.nvim/compare/v10.1.0...v10.2.0) (2023-07-20) + + +### Features + +* **view:** add option `ui.pills`. Set to `false` to disable the top buttons in the lazy window ([#938](https://github.com/folke/lazy.nvim/issues/938)) ([84266b9](https://github.com/folke/lazy.nvim/commit/84266b9f0ff314319e69adfeb1a86bd72d1aff91)) + ## [10.1.0](https://github.com/folke/lazy.nvim/compare/v10.0.2...v10.1.0) (2023-07-12) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 9f51a78..4133c3f 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -161,7 +161,7 @@ M.defaults = { debug = false, } -M.version = "10.1.0" -- x-release-please-version +M.version = "10.2.0" -- x-release-please-version M.ns = vim.api.nvim_create_namespace("lazy")