Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
UvDream committed Aug 15, 2022
1 parent e757a2a commit b0faaf0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions bin/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ async function deploy_version(version) {
// 修改完文件,开始打tag推送
chalk.green("准备推送发版....")
shell.exec("git add .");
shell.exec("git commit -m '" + version + "'");
shell.exec("git tag -a " + version + " -m '" + version + "'");
shell.exec("git commit -m 'v" + version + "'");
shell.exec("git tag -a " +"v"+ version + " -m '" + version + "'");
shell.exec("git push origin master --tags");
// await $`git add .`;
// await $`git commit -m "tag: 发版${version}"`;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "md-editor",
"private": true,
"version": "0.3.2",
"version": "0.3.3",
"bin": {
"mdc": "bin/cli.js"
},
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "MdEditor",
"version": "0.3.2"
"version": "0.3.3"
},
"tauri": {
"allowlist": {
Expand Down

0 comments on commit b0faaf0

Please sign in to comment.