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.4
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Jul 13, 2021
1 parent 0c777ba commit 18f6c3f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.4] - 2021-07-13

### Fixed

- Custom keymaps were not working in the `doom_config.lua` file

## [3.0.3] - 2021-07-12

### Changed
Expand Down Expand Up @@ -376,7 +382,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.3...develop
[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.4...develop
[3.0.4]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.3...v3.0.4
[3.0.3]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.2...v3.0.3
[3.0.2]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.1...v3.0.2
[3.0.1]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.0...v3.0.1
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;30m' # Black
Black='\033.0.40m' # Black
Gray='\033[0;90m' # Gray
White='\033[0;37m' # White
Red='\033[0;31m' # Red
Blue='\033[0;34m' # Blue
Cyan='\033[0;36m' # Cyan
Purple='\033[0;35m' # Purple
Green='\033[0;32m' # Green
Yellow='\033[0;33m' # Yellow
White='\033.0.47m' # White
Red='\033.0.41m' # Red
Blue='\033.0.44m' # Blue
Cyan='\033.0.46m' # Cyan
Purple='\033.0.45m' # Purple
Green='\033.0.42m' # Green
Yellow='\033.0.43m' # 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.3'
DoomNvimVersion='3.0.4'
# 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.3'
M.doom_version = '3.0.4'

-- Local files
M.doom_root = vim.fn.expand('$HOME/.config/doom-nvim')
Expand Down

0 comments on commit 18f6c3f

Please sign in to comment.