From f05e58a913edc886dfe6cd669379248ccf2502ba Mon Sep 17 00:00:00 2001 From: Dan Hable <418679+dhable@users.noreply.github.com> Date: Tue, 3 Jun 2025 15:48:08 -0500 Subject: [PATCH] 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> --- package.json | 2 +- version.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index cc34aef3..398059c6 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "hyperdx", "private": true, - "version": "2-beta", + "version": "2.0.0", "license": "MIT", "workspaces": [ "packages/*" diff --git a/version.sh b/version.sh index 5cf3cc40..91216292 100755 --- a/version.sh +++ b/version.sh @@ -17,7 +17,7 @@ if [ "$API_LATEST_VERSION" != "$APP_LATEST_VERSION" ]; then fi # 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" # update tags in .env