From 4684db80b79ba0e6d3eb0124d1e25f5abcb7acd7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 22:21:47 +0000 Subject: [PATCH] chore(main): release 10.5.0 --- 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 f2c5854..cd7c0c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [10.5.0](https://github.com/folke/lazy.nvim/compare/v10.4.1...v10.5.0) (2023-10-03) + + +### Features + +* **plugin:** keep track of the module a spec fragment was defined in ([8eb8de2](https://github.com/folke/lazy.nvim/commit/8eb8de29af6e2ab9dd7986e2521178875dbcad95)) + + +### Performance Improvements + +* **util:** don't try to load nvim-treesitter when markdown parser is builtin ([8b73492](https://github.com/folke/lazy.nvim/commit/8b73492249100d8a9ce9d874f7ea5a71b4d6f07e)) + ## [10.4.1](https://github.com/folke/lazy.nvim/compare/v10.4.0...v10.4.1) (2023-09-30) diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua index 3c8261d..549b5a1 100644 --- a/lua/lazy/core/config.lua +++ b/lua/lazy/core/config.lua @@ -161,7 +161,7 @@ M.defaults = { debug = false, } -M.version = "10.4.1" -- x-release-please-version +M.version = "10.5.0" -- x-release-please-version M.ns = vim.api.nvim_create_namespace("lazy")