From 29018b4718af03c09d2ac407d00cfe0a4541229b Mon Sep 17 00:00:00 2001 From: NTBBloodbath Date: Tue, 13 Jul 2021 18:39:43 -0400 Subject: [PATCH] feat: bump Doom version and add CHANGELOG entry for `v3.0.7` --- CHANGELOG.md | 10 +++++++++- install.sh | 18 +++++++++--------- lua/doom/utils/init.lua | 2 +- 3 files changed, 19 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff559963d..86c8efcbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.7] - 2021-07-13 + +### Fixed + +- Properly lazy-load `format.nvim` +- Stop lazy-loading `friendly-snippets` + ## [3.0.6] - 2021-07-13 ### Fixed @@ -399,7 +406,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.6...develop +[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.7...develop +[3.0.6]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.6...v3.0.7 [3.0.6]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.5...v3.0.6 [3.0.5]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.4...v3.0.5 [3.0.4]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.3...v3.0.4 diff --git a/install.sh b/install.sh index 7e044bba8..02ffa7fc8 100755 --- a/install.sh +++ b/install.sh @@ -12,15 +12,15 @@ Color_reset='\033[0m' # Reset ## Normal colors -Black='\033.0.60m' # Black +Black='\033.0.70m' # Black Gray='\033[0;90m' # Gray -White='\033.0.67m' # White -Red='\033.0.61m' # Red -Blue='\033.0.64m' # Blue -Cyan='\033.0.66m' # Cyan -Purple='\033.0.65m' # Purple -Green='\033.0.62m' # Green -Yellow='\033.0.63m' # Yellow +White='\033.0.77m' # White +Red='\033.0.71m' # Red +Blue='\033.0.74m' # Blue +Cyan='\033.0.76m' # Cyan +Purple='\033.0.75m' # Purple +Green='\033.0.72m' # Green +Yellow='\033.0.73m' # Yellow ## Bold colors BBlack='\033[1;30m' # Black @@ -35,7 +35,7 @@ BYellow='\033[1;33m' # Yellow # }}} # Doom Nvim version -DoomNvimVersion='3.0.6' +DoomNvimVersion='3.0.7' # System OS System="$(uname -s)" diff --git a/lua/doom/utils/init.lua b/lua/doom/utils/init.lua index 27b698bc5..b20276118 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.6' +M.doom_version = '3.0.7' -- Local files M.doom_root = vim.fn.expand('$HOME/.config/doom-nvim')