Update version to 0.3.7

This commit is contained in:
chris
2022-05-24 15:42:12 +08:00
parent 7d096e1cfb
commit 845cb7bf66
3 changed files with 4 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{ {
"id": "obsidian-to-notion", "id": "obsidian-to-notion",
"name": "Obsidian shared to Notion", "name": "Obsidian shared to Notion",
"version": "0.3.6", "version": "0.3.7",
"minAppVersion": "0.0.1", "minAppVersion": "0.0.1",
"description": "This is a plugin for Obsidian. This plugin share obsidian md file to notion with notion api", "description": "This is a plugin for Obsidian. This plugin share obsidian md file to notion with notion api",
"author": "Easychris", "author": "Easychris",

View File

@@ -1,6 +1,6 @@
{ {
"name": "obsidian-to-notion", "name": "obsidian-to-notion",
"version": "0.3.6", "version": "0.3.7",
"type": "module", "type": "module",
"description": "This is a plugin for Obsidian. This plugin share obsidian md file to notion with notion api", "description": "This is a plugin for Obsidian. This plugin share obsidian md file to notion with notion api",
"main": "main.js", "main": "main.js",

View File

@@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
node update-version.js $1 node update-version.js $1
git add .
git commit -m "Update version to $1"
git tag -a $1 -m $1 git tag -a $1 -m $1
git push origin $1 git push origin $1