From 906ff8e569872d9081cfc9246d917011c22b5e61 Mon Sep 17 00:00:00 2001
From: "github-actions[bot]"
 <41898282+github-actions[bot]@users.noreply.github.com>
Date: Wed, 11 Oct 2023 15:00:30 +0200
Subject: [PATCH] chore(main): release 10.12.0 (#1102)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
 CHANGELOG.md             | 13 +++++++++++++
 lua/lazy/core/config.lua |  2 +-
 2 files changed, 14 insertions(+), 1 deletion(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index e427d30..11b36a3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,18 @@
 # Changelog
 
+## [10.12.0](https://github.com/folke/lazy.nvim/compare/v10.11.0...v10.12.0) (2023-10-11)
+
+
+### Features
+
+* **event:** added support for structured events (see readme on event) ([303a3ed](https://github.com/folke/lazy.nvim/commit/303a3ed6a874bb5bdebf11ecdf99e1dfa3eed2c3))
+* **event:** custom lazy event hook for distros ([b65d308](https://github.com/folke/lazy.nvim/commit/b65d3086623448b93bf02055f73819b76ca1dd78))
+
+
+### Bug Fixes
+
+* **ui:** use actual handler values for rendering plugin handlers ([99ee284](https://github.com/folke/lazy.nvim/commit/99ee28473962d9ab8aa11db2d2cc201e38f0f432))
+
 ## [10.11.0](https://github.com/folke/lazy.nvim/compare/v10.10.0...v10.11.0) (2023-10-10)
 
 
diff --git a/lua/lazy/core/config.lua b/lua/lazy/core/config.lua
index 9333785..e74eee6 100644
--- a/lua/lazy/core/config.lua
+++ b/lua/lazy/core/config.lua
@@ -171,7 +171,7 @@ M.defaults = {
   debug = false,
 }
 
-M.version = "10.11.0" -- x-release-please-version
+M.version = "10.12.0" -- x-release-please-version
 
 M.ns = vim.api.nvim_create_namespace("lazy")