aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--autoload/prettier.vim2
-rw-r--r--doc/prettier.txt2
-rw-r--r--package.json2
-rw-r--r--plugin/prettier.vim4
4 files changed, 5 insertions, 5 deletions
diff --git a/autoload/prettier.vim b/autoload/prettier.vim
index e2ba919..3241f48 100644
--- a/autoload/prettier.vim
+++ b/autoload/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.2.7
+" Version: 1.0.0-alpha
" Usage: Use :help vim-prettier-usage, or visit https://github.com/prettier/vim-prettier
"
"==========================================================================================================
diff --git a/doc/prettier.txt b/doc/prettier.txt
index db4223d..3760ca7 100644
--- a/doc/prettier.txt
+++ b/doc/prettier.txt
@@ -8,7 +8,7 @@ Author: Mitermayer Reis <mitermayer.reis@gmail.com>
WebSite: https://prettier.io/
Repository: https://github.com/prettier/vim-prettier
License: MIT style license
-Version: 0.2.7
+Version: 1.0.0-alpha
==============================================================================
CONTENTS *vim-prettier-contents*
diff --git a/package.json b/package.json
index 901597e..cc35f7c 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "vim-prettier",
"author": "Mitermayer Reis <mitermayer.reis@gmail.com>",
- "version": "0.2.7",
+ "version": "1.0.0-alpha",
"description": "Vim plugin for prettier",
"license": "MIT",
"repository": {
diff --git a/plugin/prettier.vim b/plugin/prettier.vim
index 4bb0773..bad2ab0 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.2.7
+" Version: 1.0.0-alpha
" Usage: Use :help vim-prettier-usage, or visit https://github.com/prettier/vim-prettier
"
"==========================================================================================================
@@ -100,7 +100,7 @@ command! -nargs=? -range=% Prettier call prettier#Prettier(g:prettier#exec_cmd_a
command! -nargs=? -range=% PrettierAsync call prettier#Prettier(1, <line1>, <line2>, g:prettier#partial_format)
" prints vim-prettier version
-command! -nargs=? -range=% PrettierVersion echom '0.2.7'
+command! -nargs=? -range=% PrettierVersion echom '1.0.0-alpha'
" call prettier cli
command! -nargs=? -range=% PrettierCli call prettier#PrettierCli(<q-args>)