Skip to content

Commit

Permalink
chore: bump version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saecki committed Sep 25, 2022
1 parent b75ecb1 commit 1dffccc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To use with neovim 0.6 or to stay on a stable release.
[__vim-plug__](https://github.com/junegunn/vim-plug)
```
Plug 'nvim-lua/plenary.nvim'
Plug 'saecki/crates.nvim', { 'tag': 'v0.2.1' }
Plug 'saecki/crates.nvim', { 'tag': 'v0.3.0' }
lua require('crates').setup()
```
Expand All @@ -57,7 +57,7 @@ lua require('crates').setup()
```lua
use {
'saecki/crates.nvim',
tag = 'v0.2.1',
tag = 'v0.3.0',
requires = { 'nvim-lua/plenary.nvim' },
config = function()
require('crates').setup()
Expand Down
2 changes: 1 addition & 1 deletion doc/crates.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
*crates.nvim*

Author: Tobias Schmitz <[email protected]>
Version: 0.2.1
Version: 0.3.0
Homepage: <https://github.com/saecki/crates.nvim>
License: MIT license

Expand Down
2 changes: 1 addition & 1 deletion scripts/gen_doc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ exec lua "$0" "$@"

local inspect = require("inspect")
local config = require('lua.crates.config')
local version = "0.2.1"
local version = "0.3.0"

local function format_readme_refs(line)
line = line:gsub("`f#([^`]+)`", "`%1`")
Expand Down

0 comments on commit 1dffccc

Please sign in to comment.