Skip to content

Commit

Permalink
4.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robb-j committed Oct 17, 2024
1 parent 84ba766 commit b1d092b
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 6 deletions.
22 changes: 22 additions & 0 deletions bump.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#!/usr/bin/env sh

set -e

VERSION="$1"

if [ -z "$VERSION" ]
then
echo "error: version not set"
exit 1
fi

echo "setting to $VERSION"

npm version --no-git-tag-version --allow-same-version -C server $VERSION
npm version --no-git-tag-version --allow-same-version -C client $VERSION

git add -A
npm version --no-git-tag-version $VERSION

git commit -m "$VERSION"
git tag "v$VERSION" -m "$VERSION"
4 changes: 2 additions & 2 deletions client/package-lock.json

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

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openlab/mozfest-client",
"version": "3.23.1",
"version": "4.0.0-beta.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
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.

2 changes: 1 addition & 1 deletion server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@openlab/mozfest-server",
"version": "3.23.1",
"version": "4.0.0-beta.1",
"private": true,
"type": "module",
"scripts": {
Expand Down

0 comments on commit b1d092b

Please sign in to comment.