From f97df942b42fffb5787319ca9c2e10f20e4958e0 Mon Sep 17 00:00:00 2001 From: NTBBloodbath Date: Sun, 22 Aug 2021 16:40:24 -0400 Subject: [PATCH] docs: add `v3.0.12` CHANGELOG entry, bump version --- CHANGELOG.md | 9 ++++++++- install.sh | 2 +- lua/doom/utils/init.lua | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e697d7..9cabace 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.12] - 2021-08-22 + +### Fixed + +- Proper conditional for triggering dashboard-nvim plugin, check if it's in the packer_plugins table + ## [3.0.11] - 2021-08-20 ### Fixed @@ -433,7 +439,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial stable release -[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.11...develop +[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.12...develop +[3.0.12]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.11...v3.0.12 [3.0.11]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.10...v3.0.11 [3.0.10]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.9...v3.0.10 [3.0.9]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.8...v3.0.9 diff --git a/install.sh b/install.sh index 5992971..f1baf90 100755 --- a/install.sh +++ b/install.sh @@ -35,7 +35,7 @@ BYellow='\033[1;33m' # Yellow # }}} # Doom Nvim version -DoomNvimVersion='3.0.11' +DoomNvimVersion='3.0.12' # System OS System="$(uname -s)" diff --git a/lua/doom/utils/init.lua b/lua/doom/utils/init.lua index d1d7aa8..35e56a2 100644 --- a/lua/doom/utils/init.lua +++ b/lua/doom/utils/init.lua @@ -8,7 +8,7 @@ local M = {} -------------------- HELPERS -------------------- -- Doom Nvim version -M.doom_version = '3.0.11' +M.doom_version = '3.0.12' -- Local files M.doom_root = vim.fn.expand('$HOME/.config/doom-nvim')