8000 v4.3.0 by kkoomen · Pull Request #611 · kkoomen/vim-doge · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

v4.3.0 #611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.2.0
4.3.0
4 changes: 2 additions & 2 deletions addon-info.json
10000
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "vim-doge",
"name": "doge",
"description": "(Do)cumentation (Ge)nerator",
"author": "Kim Koomen"
"author": "Kim 金可明"
}
2 changes: 1 addition & 1 deletion doc/doge.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
*doge.txt* (Do)cumentation (Ge)nerator
Kim Koomen *doge*
Kim 金可明 *doge*

==============================================================================
CONTENTS *doge-contents*
Expand Down
2 changes: 1 addition & 1 deletion helper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vim-doge-helper"
version = "4.2.0"
version = "4.3.0"
edition = "2021"
publish = false
include = ["src"]
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ if command -v vimdoc >/dev/null 2>&1; then
vimdoc .
fi

git diff .version helper/Cargo.toml
git diff .version helper/Cargo.toml doc/doge.txt

echo "Committing the above changes..."
git add .version helper/Cargo.toml
git add .version helper/Cargo.toml doc/doge.txt
git commit -m "chore(release): v$next_version :tada:"

echo "Done, make sure to push the changes made"
0