From fea14d19cd464ef06b929e345b3b46d0c4e794fa Mon Sep 17 00:00:00 2001 From: lukeocodes Date: Wed, 6 May 2026 16:58:48 +0100 Subject: [PATCH] chore(release): unpin release-as 0.1.0, drop bogus duplicate changelog entry The release-please config still had `release-as: 0.1.0` from the original release pin (commit 53a4f04). That kept release-please from ever bumping past 0.1.0: - PR #29 (autogenerated release for the fix(ui) commit) was titled "release ui 0.1.0" and added a duplicate `## [0.1.0]` changelog entry that compared 0.1.0 to itself. - On merge, release-please tried to re-create tag `ui-v0.1.0`, which already existed from the original 2026-04-30 release. GitHub responded with "already_exists" and the workflow failed. - Net effect: my CSS scoping fix (commit 8742c18) is in main but not on npm. npm still has the original unfixed 0.1.0. Fix: - Remove `release-as: 0.1.0` so release-please bumps from conventional commits going forward. - Delete the duplicate `## [0.1.0]` block PR #29 added to the changelog. The next release-please PR will re-add it under the correct bumped version (0.1.1 per `bump-patch-for-minor-pre-major: true` plus the existing `fix:` commit). After this lands release-please will open a new PR titled 'release ui 0.1.1' (or 0.2.0 depending on what other commits are in the queue). Merging that will publish the fix to npm and trigger the CDN deploy. --- packages/ui/CHANGELOG.md | 7 ------- release-please-config.json | 3 +-- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 312ddea..2d26454 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,12 +1,5 @@ # Changelog -## [0.1.0](https://github.com/deepgram/ui/compare/ui-v0.1.0...ui-v0.1.0) (2026-05-06) - - -### Bug Fixes - -* **ui:** scope tailwind preflight to [data-dg-agent] via plugin ([#27](https://github.com/deepgram/ui/issues/27)) ([8742c18](https://github.com/deepgram/ui/commit/8742c189c1204647e973827de57f16678aea29cd)) - ## 0.1.0 (2026-04-30) diff --git a/release-please-config.json b/release-please-config.json index c7c9c16..a088ed1 100644 --- a/release-please-config.json +++ b/release-please-config.json @@ -16,8 +16,7 @@ "packages": { "packages/ui": { "package-name": "@deepgram/ui", - "changelog-path": "CHANGELOG.md", - "release-as": "0.1.0" + "changelog-path": "CHANGELOG.md" } } }