diff options
| author | mitermayer <mitermayer.reis@gmail.com> | 2023-10-10 12:19:12 +1100 |
|---|---|---|
| committer | mitermayer <mitermayer.reis@gmail.com> | 2023-10-10 12:19:12 +1100 |
| commit | e40b4d080e240924890911fb7af733241f4eceb1 (patch) | |
| tree | faba9740e85d71010024011b0393f07d77458d07 | |
| parent | d10bdd15af8a61eff9d279bd2815b4192506d1c0 (diff) | |
| download | vim-prettier-e40b4d080e240924890911fb7af733241f4eceb1.tar.xz | |
Relese 1.01.0.0
- Adding support for prettier 3.x
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | autoload/prettier.vim | 2 | ||||
| -rw-r--r-- | doc/prettier.txt | 2 | ||||
| -rw-r--r-- | package.json | 4 | ||||
| -rw-r--r-- | plugin/prettier.vim | 4 |
5 files changed, 7 insertions, 7 deletions
@@ -1,6 +1,6 @@ NAME=vim-prettier -VERSION=1.0.0-beta +VERSION=1.0.0 build: docker build -t mitermayer/vim-test-bed . diff --git a/autoload/prettier.vim b/autoload/prettier.vim index 4eb4a24..5645dc5 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: 1.0.0-beta +" Version: 1.0.0 " 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 bbbad05..052ed1a 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: 1.0.0-beta +Version: 1.0.0 ============================================================================== CONTENTS *vim-prettier-contents* diff --git a/package.json b/package.json index dbdcafd..42db5cb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "vim-prettier", "author": "Mitermayer Reis <mitermayer.reis@gmail.com>", - "version": "1.0.0-beta", + "version": "1.0.0", "description": "Vim plugin for prettier", "license": "MIT", "repository": { @@ -25,4 +25,4 @@ "jest": "^23.6.0", "vim-driver": "^1.0.0" } -}
\ No newline at end of file +} diff --git a/plugin/prettier.vim b/plugin/prettier.vim index 7ef774b..4f9844a 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: 1.0.0-beta +" Version: 1.0.0 " Usage: Use :help vim-prettier-usage, or visit https://github.com/prettier/vim-prettier " "========================================================================================================== @@ -144,7 +144,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 '1.0.0-beta' +command! -nargs=? -range=% PrettierVersion echom '1.0.0' " call prettier cli command! -nargs=? -range=% PrettierCli call prettier#PrettierCli(<q-args>) |
