Skip to content

Commit

Permalink
server: fix version being off by 1 in release notes/tag
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Apr 2, 2023
1 parent d8aff60 commit 0b0e90f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions server/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@scrypted/server",
"version": "0.7.43",
"version": "0.7.44",
"description": "",
"dependencies": {
"@mapbox/node-pre-gyp": "^1.0.10",
Expand Down Expand Up @@ -72,8 +72,7 @@
"prebeta": "npm version patch && git add package.json && npm run build && git commit -m prebeta",
"beta": "npm publish --tag beta",
"release": "npm publish",
"prerelease": "npm version patch && git add package.json && npm run build && git commit -m prerelease",
"postrelease": "git tag v$npm_package_version && git push origin v$npm_package_version",
"postrelease": "git tag v$npm_package_version && git push origin v$npm_package_version && npm version patch && git add package.json && npm run build && git commit -m postrelease",
"docker": "scripts/github-workflow-publish-docker.sh"
},
"author": "",
Expand Down

0 comments on commit 0b0e90f

Please sign in to comment.