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

Commit

Permalink
release,docs: Doom-nvim v4.0.5. Add support for nvim 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
connorgmeean committed Oct 8, 2022
1 parent c3f3f03 commit 8be9cb2
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,28 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [4.0.5]

This release adds support for neovim v0.8! Due to breaking changes to treesitter
you might not be able to run `:PackerSync`. In this case try running
`:DoomNuke all` (to re-install packer plugins + delete compiled.lua) and then
restarting neovim.

### Features
- c3f3f03 feat(core): Add `:DoomNuke` command to re-install all plugins.
- Can write `:DoomNuke all|plugins|cache`
- `all` Delete packer plugins (re-install on next launch) + `packer_compiled.lua`
- `plugins` Delete packer plugins (re-install on next launch)
- `cache` Delete `packer_compiled.lua`
- 7d90b56 feat,chore(core): Support nvim-0.8, update packer pinned dependencies, add fallback dependencies for 0.7
- 84009cd feat(langs,nix): Added nix language support (#399) (Thanks @Fryuni!)

### Fixes
- 8e01af1 fix(whichkey): Not showing all keymaps
- 99f5a78 Add extra description for configurable binds and autocmds
- 47441f5 Fix docs message and alignment

## [4.0.4]

### Features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=for-the-badge)](http://makeapullrequest.com)
![Latest Release](https://img.shields.io/github/v/release/NTBBloodbath/doom-nvim?include_prereleases&style=for-the-badge&color=red)
![GitHub last commit (branch)](https://img.shields.io/github/last-commit/NTBBloodbath/doom-nvim/main?style=for-the-badge)
![Neovim version](https://img.shields.io/badge/Neovim-0.7-57A143?style=for-the-badge&logo=neovim)
![Neovim version](https://img.shields.io/badge/Neovim-0.8-57A143?style=for-the-badge&logo=neovim)
[![Discord](https://img.shields.io/badge/discord-join-7289da?style=for-the-badge&logo=discord)](https://discord.gg/xhvBM45zBf)

<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
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 @@ -7,7 +7,7 @@ local fs = require("doom.utils.fs")
utils.version = {
major = 4,
minor = 0,
patch = 4,
patch = 5,
}

--- Currently supported version of neovim for this build of doom-nvim
Expand Down

0 comments on commit 8be9cb2

Please sign in to comment.