From 8be9cb2cc51de39e687fa569baf77cb4bb184144 Mon Sep 17 00:00:00 2001 From: connorgmeean Date: Sat, 8 Oct 2022 23:13:16 +1100 Subject: [PATCH] release,docs: Doom-nvim v4.0.5. Add support for nvim 0.8 --- CHANGELOG.md | 22 ++++++++++++++++++++++ README.md | 2 +- lua/doom/utils/init.lua | 2 +- 3 files changed, 24 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01ffa2c0a..8f66b672a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index a376b943a..b02b3a1f1 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/lua/doom/utils/init.lua b/lua/doom/utils/init.lua index 768943307..7413a9b76 100644 --- a/lua/doom/utils/init.lua +++ b/lua/doom/utils/init.lua @@ -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