chore: align all versions on 2.0.0 (#886)

This brings the common-utils and the top level package.json versions into alignment with the app and api packages, e.g. 2.0.0.

Co-authored-by: Warren <5959690+wrn14897@users.noreply.github.com>
This commit is contained in:
Dan Hable 2025-06-03 15:48:08 -05:00 committed by GitHub
parent ab387e1168
commit f05e58a913
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{ {
"name": "hyperdx", "name": "hyperdx",
"private": true, "private": true,
"version": "2-beta", "version": "2.0.0",
"license": "MIT", "license": "MIT",
"workspaces": [ "workspaces": [
"packages/*" "packages/*"

View file

@ -17,7 +17,7 @@ if [ "$API_LATEST_VERSION" != "$APP_LATEST_VERSION" ]; then
fi fi
# update root package.json version # update root package.json version
sed -i '' 's/\("version":\s*"\)[^"]*/\"$API_LATEST_VERSION\"/' package.json sed -i '' "s/^ \"version\": \"[^\"]*\"/ \"version\": \"$API_LATEST_VERSION\"/" package.json
echo "Updated root package.json version to $API_LATEST_VERSION" echo "Updated root package.json version to $API_LATEST_VERSION"
# update tags in .env # update tags in .env