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

Commit 2c3443b

Browse files
committed
docs: add v3.0.13 CHANGELOG entry, bump version
1 parent 3dd1375 commit 2c3443b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [3.0.13] - 2021-08-24
11+
12+
### Fixed
13+
14+
- Use `stdpath("config")` for configuration paths instead of `~/.config/doom-nvim` because doom-nvim is actually symlinked, respect `XDG_CONFIG_HOME` (see [#101](https://github.com/NTBBloodbath/doom-nvim/pull/101))
15+
- Update `<leader>dc` to match new config setup, ref [#101](https://github.com/NTBBloodbath/doom-nvim/pull/101). See [#102](https://github.com/NTBBloodbath/doom-nvim/pull/102)
16+
1017
## [3.0.12] - 2021-08-22
1118

1219
### Fixed
@@ -439,7 +446,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
439446

440447
- Initial stable release
441448

442-
[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.12...develop
449+
[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.13...develop
450+
[3.0.12]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.12...v3.0.13
443451
[3.0.12]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.11...v3.0.12
444452
[3.0.11]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.10...v3.0.11
445453
[3.0.10]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.9...v3.0.10

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ BYellow='\033[1;33m' # Yellow
3535
# }}}
3636

3737
# Doom Nvim version
38-
DoomNvimVersion='3.0.12'
38+
DoomNvimVersion='3.0.13'
3939
# System OS
4040
System="$(uname -s)"
4141

lua/doom/utils/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ local M = {}
88

99
-------------------- HELPERS --------------------
1010
-- Doom Nvim version
11-
M.doom_version = '3.0.12'
11+
M.doom_version = '3.0.13'
1212

1313
-- Local files
1414
M.doom_root = vim.fn.stdpath('config')

0 commit comments

Comments
 (0)