From ae4f15e23dfc0b55a39822cd66d469e5952aef54 Mon Sep 17 00:00:00 2001 From: Briain O'Driscoll Date: Thu, 12 May 2022 00:26:38 +0100 Subject: [PATCH] bump version to v0.8.0 in the README --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ec31378..2fb18df 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ Each video will be associated with a branch so checkout the one you are interest Make sure to remove or move your current `nvim` directory -**IMPORTANT** Requires [Neovim v0.6.0](https://github.com/neovim/neovim/releases/tag/v0.6.0) or [Nightly](https://github.com/neovim/neovim/releases/tag/nightly). +**IMPORTANT** Requires [Neovim v0.8.0]](https://github.com/neovim/neovim/releases). [Upgrade](#upgrade-to-latest-release) if you're on an earlier version. ``` git clone https://github.com/LunarVim/Neovim-from-scratch.git ~/.config/nvim ``` @@ -60,6 +60,16 @@ Next we need to install python support (node is optional) **NOTE** make sure you have [node](https://nodejs.org/en/) installed, I recommend a node manager like [fnm](https://github.com/Schniz/fnm). +### Upgrade to latest release + +Assuming you [built from source](https://github.com/neovim/neovim/wiki/Building-Neovim#quick-start), `cd` into the folder where you cloned `neovim` and run the following commands. +``` +git pull +make distclean && make CMAKE_BUILD_TYPE=Release +sudo make install +nvim -v +``` + > The computing scientist's main challenge is not to get confused by the complexities of his own making. \- Edsger W. Dijkstra