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

Commit

Permalink
docs: add v3.0.13 CHANGELOG entry, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
NTBBloodbath committed Aug 25, 2021
1 parent 3dd1375 commit 2c3443b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 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.13] - 2021-08-24

### Fixed

- 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))
- 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)

## [3.0.12] - 2021-08-22

### Fixed
Expand Down Expand Up @@ -439,7 +446,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.12...develop
[unreleased]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.13...develop
[3.0.12]: https://github.com/NTBBloodbath/doom-nvim/compare/v3.0.12...v3.0.13
[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
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ BYellow='\033[1;33m' # Yellow
# }}}

# Doom Nvim version
DoomNvimVersion='3.0.12'
DoomNvimVersion='3.0.13'
# 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.12'
M.doom_version = '3.0.13'

-- Local files
M.doom_root = vim.fn.stdpath('config')
Expand Down

0 comments on commit 2c3443b

Please sign in to comment.