This is an automated email from the ASF dual-hosted git repository. wu-sheng pushed a commit to branch fix/next-dev-version in repository https://gitbox.apache.org/repos/asf/skywalking-horizon-ui.git
commit ed4e34b617862a1db64028c068de4c9ed95be8cd Author: Wu Sheng <[email protected]> AuthorDate: Mon Jun 22 16:50:25 2026 +0800 fix: correct next-dev version to 1.0.0-dev The 0.7.0 release run answered release.sh's "next version (without -dev suffix)" prompt with `1.0.0-dev`, so the script appended a second `-dev`, leaving main on the malformed `1.0.0-dev-dev` across all six package.json markers + apps/bff/src/server.ts, with a `## 1.0.0-dev` CHANGELOG heading. Corrects them to `1.0.0-dev` (the intended next dev version) and the CHANGELOG heading to `## 1.0.0`. The v0.7.0 release tag carries clean `0.7.0` markers and is unaffected. --- CHANGELOG.md | 2 +- apps/bff/package.json | 2 +- apps/bff/src/server.ts | 2 +- apps/ui/package.json | 2 +- package.json | 2 +- packages/api-client/package.json | 2 +- packages/design-tokens/package.json | 2 +- packages/templates/package.json | 2 +- 8 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b50e58..9dfdb63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ Notable changes to Apache SkyWalking Horizon UI, written from the operator's poi The version line is shared by every package in the monorepo (apps + shared packages) plus the BFF's `HORIZON_VERSION` default. -## 1.0.0-dev +## 1.0.0 (In development — fill in highlights here before cutting the release.) diff --git a/apps/bff/package.json b/apps/bff/package.json index bfbb807..4fdf795 100644 --- a/apps/bff/package.json +++ b/apps/bff/package.json @@ -1,6 +1,6 @@ { "name": "@skywalking-horizon-ui/bff", - "version": "1.0.0-dev-dev", + "version": "1.0.0-dev", "private": true, "type": "module", "main": "dist/server.js", diff --git a/apps/bff/src/server.ts b/apps/bff/src/server.ts index 482bd39..55da584 100644 --- a/apps/bff/src/server.ts +++ b/apps/bff/src/server.ts @@ -334,7 +334,7 @@ if (staticDir && existsSync(staticDir)) { // admin status pages. app.get('/api/health', async () => ({ status: 'ok', - version: process.env.HORIZON_VERSION ?? '1.0.0-dev-dev', + version: process.env.HORIZON_VERSION ?? '1.0.0-dev', })); const { host, port } = source.current.server; diff --git a/apps/ui/package.json b/apps/ui/package.json index dec74e6..1a25b03 100644 --- a/apps/ui/package.json +++ b/apps/ui/package.json @@ -1,6 +1,6 @@ { "name": "@skywalking-horizon-ui/ui", - "version": "1.0.0-dev-dev", + "version": "1.0.0-dev", "private": true, "type": "module", "scripts": { diff --git a/package.json b/package.json index 68504ed..61fe0f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "skywalking-horizon-ui", - "version": "1.0.0-dev-dev", + "version": "1.0.0-dev", "private": true, "description": "Apache SkyWalking Horizon UI - next-generation web UI", "license": "Apache-2.0", diff --git a/packages/api-client/package.json b/packages/api-client/package.json index e31d5d1..4a4ea72 100644 --- a/packages/api-client/package.json +++ b/packages/api-client/package.json @@ -1,6 +1,6 @@ { "name": "@skywalking-horizon-ui/api-client", - "version": "1.0.0-dev-dev", + "version": "1.0.0-dev", "private": true, "type": "module", "main": "./dist/index.js", diff --git a/packages/design-tokens/package.json b/packages/design-tokens/package.json index db5436f..083a028 100644 --- a/packages/design-tokens/package.json +++ b/packages/design-tokens/package.json @@ -1,6 +1,6 @@ { "name": "@skywalking-horizon-ui/design-tokens", - "version": "1.0.0-dev-dev", + "version": "1.0.0-dev", "private": true, "type": "module", "main": "./dist/index.js", diff --git a/packages/templates/package.json b/packages/templates/package.json index c97989c..b195ccc 100644 --- a/packages/templates/package.json +++ b/packages/templates/package.json @@ -1,6 +1,6 @@ { "name": "@skywalking-horizon-ui/templates", - "version": "1.0.0-dev-dev", + "version": "1.0.0-dev", "private": true, "type": "module", "main": "./dist/index.js",
