diff --git a/package.json b/package.json index 4aa1533..10247a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "g8-vue-tree", - "version": "0.0.27", + "version": "0.0.26", "description": "A Vue.js tree view component with stable DOM tree.", "repository": "git@github.com:eidng8/vue-tree.git", "bugs": "git@github.com:eidng8/vue-tree/issues", diff --git a/scripts/release.bat b/scripts/release.bat index 4012293..02996c0 100644 --- a/scripts/release.bat +++ b/scripts/release.bat @@ -22,14 +22,13 @@ bash.exe -lc github_changelog_generator || goto ERR for /f "tokens=*" %%v in ('node scripts\make-release-note.js') do set VERSION=%%v git add . || goto ERR -git commit -m "Release %VERSION% [ci skip]" || goto ERR +git commit -m "Release %VERSION%" || goto ERR git push || goto ERR git tag --sign -m "%date%" "Release-v%VERSION%" git push --tags || goto ERR git checkout dev git merge master -git commit -m "bring in %VERSION% [ci skip]" git push