From 6b2311a46a3808e366bb251270f4cc04afb421ed Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 9 Jun 2023 12:56:48 +0200 Subject: [PATCH] chore(main): release 9.23.0 (#859) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 12 ++++++++++++ lua/lazy/core/config.lua | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 639084b..c771d31 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [9.23.0](https://github.com/folke/lazy.nvim/compare/v9.22.2...v9.23.0) (2023-06-08) + + +### Features + +* **startup:** added data/site to the rtp. Will be used by upcoming treesitter version ([f131606](https://github.com/folke/lazy.nvim/commit/f131606190535b0d0b35406e8573b973b48e55b1)) + + +### Bug Fixes + +* **event:** dont use autocmd pattern to detect event retriggering. Fixes [#858](https://github.com/folke/lazy.nvim/issues/858) ([bc89502](https://github.com/folke/lazy.nvim/commit/bc895023573e76f8567d2375bbd3ea8be4f00ca7)) + ## [9.22.2](https://github.com/folke/lazy.nvim/compare/v9.22.1...v9.22.2) (2023-06-03) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 12fa8f7..15ce7d0 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -153,7 +153,7 @@ M.defaults = { debug = false, } -M.version = "9.22.2" -- x-release-please-version +M.version = "9.23.0" -- x-release-please-version M.ns = vim.api.nvim_create_namespace("lazy")