aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormitermayer <mitermayer.reis@gmail.com>2017-09-25 22:34:26 -0700
committermitermayer <mitermayer.reis@gmail.com>2017-09-25 22:34:26 -0700
commit354feb2decd0f65e649d44a980a9852cc411872f (patch)
treea87424bfac0c1fc652ef73e2489cae2f30e1a0b3
parentade5eb14442a4d78206683eb850353945e8feaed (diff)
downloadvim-prettier-354feb2decd0f65e649d44a980a9852cc411872f.tar.xz
Version bump 0.1.2
-rw-r--r--CHANGELOG.md9
-rw-r--r--package.json2
-rw-r--r--plugin/prettier.vim4
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>)