Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Commit

Permalink
feat: bump Doom version and add CHANGELOG entry for v3.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Jul 13, 2021
1 parent 8585440 commit 29018b4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 11 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
18 changes: 9 additions & 9 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)"

Expand Down
2 changes: 1 addition & 1 deletion lua/doom/utils/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 29018b4

Please sign in to comment.