Prepare stable development release version 0.1.2

This commit is contained in:
Arctic Ice Studio 2017-01-01 10:25:33 +01:00
parent f8ffce2445
commit 499bf8be4a
5 changed files with 10 additions and 5 deletions

View file

@ -4,6 +4,11 @@
---
# 0.1.2 (2017-01-01)
## Bug Fixes
Fixed a bug where the `g:colors_name` variable has been unset caused by the `syntax reset` call due to the execution
order. (@shuei72, #5, f8ffce24)
# 0.1.1 (2016-12-26)
## Bug Fixes
Fixed wrong color variables (`*_term` to `*_gui`) for the `guisp` attribute of all `Spell*` highlighting groups which caused error logs while loading `vim`/`gvim`/MacVim. (@kamwitsta, #4, 4d642b9b)

View file

@ -46,7 +46,7 @@ Plug 'arcticicestudio/nord-vim', { 'branch': 'develop' }
A specific version can be installed via git tags.
```sh
Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.1.1' }
Plug 'arcticicestudio/nord-vim', { 'tag': 'v0.1.2' }
```
Of course it can be installed with any of your favorite tools:
@ -118,7 +118,7 @@ Detailed descriptions for supported languages can be found in the [project wiki]
![][scrot-lang-ruby]
## Development
[![](https://img.shields.io/badge/Changelog-0.1.1-blue.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.1.1/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-blue.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-blue.svg)](https://github.com/arcticicestudio/arcver)
[![](https://img.shields.io/badge/Changelog-0.1.2-blue.svg)](https://github.com/arcticicestudio/nord-vim/blob/v0.1.2/CHANGELOG.md) [![](https://img.shields.io/badge/Workflow-gitflow--branching--model-blue.svg)](http://nvie.com/posts/a-successful-git-branching-model) [![](https://img.shields.io/badge/Versioning-ArcVer_0.8.0-blue.svg)](https://github.com/arcticicestudio/arcver)
### Contribution
Please report issues/bugs, feature requests and suggestions for improvements to the [issue tracker](https://github.com/arcticicestudio/nord-vim/issues).

View file

@ -6,7 +6,7 @@
" email development@arcticicestudio.com +
" copyright Copyright (C) 2016 +
" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
let s:nord_vim_version="0.1.1"
let s:nord_vim_version="0.1.2"
let g:airline#themes#nord#palette = {}
let s:nord0_gui = "#2E3440"

View file

@ -6,7 +6,7 @@
" email development@arcticicestudio.com +
" copyright Copyright (C) 2016 +
" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
let s:nord_vim_version="0.1.1"
let s:nord_vim_version="0.1.2"
let s:p = {'normal': {}, 'inactive': {}, 'insert': {}, 'replace': {}, 'visual': {}, 'tabline': {}}
let s:nord0 = ["#2E3440", "NONE"]

View file

@ -14,7 +14,7 @@ if version > 580
endif
let g:colors_name = "nord"
let s:nord_vim_version="0.1.1"
let s:nord_vim_version="0.1.2"
set background=dark
let s:nord0_gui = "#2E3440"