diff options
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rw-r--r-- | package.json | 2 | ||||
| -rw-r--r-- | plugin/prettier.vim | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a3e0cd3..131a3cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,16 @@ # Change Log -## [Unreleased](https://github.com/prettier/vim-prettier/tree/HEAD) +## [0.1.2](https://github.com/prettier/vim-prettier/tree/0.1.2) (2017-09-26) +[Full Changelog](https://github.com/prettier/vim-prettier/compare/0.1.1...0.1.2) -[Full Changelog](https://github.com/prettier/vim-prettier/compare/0.1.1...HEAD) +**Implemented enhancements:** + +- Allow configuration to set lookup path for `prettier` cli on `.vimrc` [\#56](https://github.com/prettier/vim-prettier/issues/56) **Merged pull requests:** +- issue/56 - Allowing user path overwrite configuration [\#57](https://github.com/prettier/vim-prettier/pull/57) ([mitermayer](https://github.com/mitermayer)) +- Fixed some typos in the README [\#55](https://github.com/prettier/vim-prettier/pull/55) ([Haegin](https://github.com/Haegin)) - feature: Adding more commands [\#54](https://github.com/prettier/vim-prettier/pull/54) ([mitermayer](https://github.com/mitermayer)) ## [0.1.1](https://github.com/prettier/vim-prettier/tree/0.1.1) (2017-09-18) diff --git a/package.json b/package.json index 1f1a2b8..9153d23 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vim-prettier", "author": "Mitermayer Reis <mitermayer.reis@gmail.com>", - "version": "0.1.1", + "version": "0.1.2", "description": "Vim plugin for prettier", "license": "MIT", "repository": { diff --git a/plugin/prettier.vim b/plugin/prettier.vim index 7837370..6790205 100644 --- a/plugin/prettier.vim +++ b/plugin/prettier.vim @@ -5,7 +5,7 @@ " Name Of File: prettier.vim " Description: A vim plugin wrapper for prettier, pre-configured with custom default prettier settings. " Maintainer: Mitermayer Reis <mitermayer.reis at gmail.com> -" Version: 0.1.1 +" Version: 0.1.2 " Usage: Use :help vim-prettier-usage, or visit https://github.com/prettier/vim-prettier " "========================================================================================================== @@ -67,7 +67,7 @@ command! -nargs=? -range=% Prettier call prettier#Prettier(g:prettier#exec_cmd_a command! -nargs=? -range=% PrettierAsync call prettier#Prettier(1, <line1>, <line2>) " prints vim-prettier version -command! -nargs=? -range=% PrettierVersion echom '0.1.1' +command! -nargs=? -range=% PrettierVersion echom '0.1.2' " call prettier cli command! -nargs=? -range=% PrettierCli call prettier#PrettierCli(<q-args>) |
