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

Commit 8be9cb2

Browse files
author
connorgmeean
committed
release,docs: Doom-nvim v4.0.5. Add support for nvim 0.8
1 parent c3f3f03 commit 8be9cb2

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
9+
## [4.0.5]
10+
11+
This release adds support for neovim v0.8! Due to breaking changes to treesitter
12+
you might not be able to run `:PackerSync`. In this case try running
13+
`:DoomNuke all` (to re-install packer plugins + delete compiled.lua) and then
14+
restarting neovim.
15+
16+
### Features
17+
- c3f3f03 feat(core): Add `:DoomNuke` command to re-install all plugins.
18+
- Can write `:DoomNuke all|plugins|cache`
19+
- `all` Delete packer plugins (re-install on next launch) + `packer_compiled.lua`
20+
- `plugins` Delete packer plugins (re-install on next launch)
21+
- `cache` Delete `packer_compiled.lua`
22+
- 7d90b56 feat,chore(core): Support nvim-0.8, update packer pinned dependencies, add fallback dependencies for 0.7
23+
- 84009cd feat(langs,nix): Added nix language support (#399) (Thanks @Fryuni!)
24+
25+
### Fixes
26+
- 8e01af1 fix(whichkey): Not showing all keymaps
27+
- 99f5a78 Add extra description for configurable binds and autocmds
28+
- 47441f5 Fix docs message and alignment
29+
830
## [4.0.4]
931

1032
### Features

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge)](http://makeapullrequest.com)
88
![Latest Release](https://img.shields.io/github/v/release/NTBBloodbath/doom-nvim?include_prereleases&style=for-the-badge&color=red)
99
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/NTBBloodbath/doom-nvim/main?style=for-the-badge)
10-
![Neovim version](https://img.shields.io/badge/Neovim-0.7-57A143?style=for-the-badge&logo=neovim)
10+
![Neovim version](https://img.shields.io/badge/Neovim-0.8-57A143?style=for-the-badge&logo=neovim)
1111
[![Discord](https://img.shields.io/badge/discord-join-7289da?style=for-the-badge&logo=discord)](https://discord.gg/xhvBM45zBf)
1212

1313
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->

lua/doom/utils/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ local fs = require("doom.utils.fs")
77
utils.version = {
88
major = 4,
99
minor = 0,
10-
patch = 4,
10+
patch = 5,
1111
}
1212

1313
--- Currently supported version of neovim for this build of doom-nvim

0 commit comments

Comments
 (0)