From 08107c306f60295ed8fd00d16197a6053815c40d Mon Sep 17 00:00:00 2001 From: NagyVikt Date: Tue, 5 May 2026 16:38:29 +0200 Subject: [PATCH] Enable the next npm publish after 0.1.20 The npm registry already serves @imdeadpool/codex-account-switcher@0.1.20, so this release advances package metadata to 0.1.21 and adds matching release notes for the manual publish/GitHub release flow. Constraint: npm publish requires a version that is not already published Confidence: high Scope-risk: narrow Directive: Keep releases/vX.Y.Z.md aligned with package.json before publishing Tested: npm test; npm pack --dry-run; git diff --check; openspec validate --specs Not-tested: npm publish; GitHub release creation --- package-lock.json | 4 ++-- package.json | 2 +- releases/v0.1.21.md | 24 ++++++++++++++++++++++++ 3 files changed, 27 insertions(+), 3 deletions(-) create mode 100644 releases/v0.1.21.md diff --git a/package-lock.json b/package-lock.json index 0bb5a1d..7134ee3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@imdeadpool/codex-account-switcher", - "version": "0.1.20", + "version": "0.1.21", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@imdeadpool/codex-account-switcher", - "version": "0.1.20", + "version": "0.1.21", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index e058172..9c34248 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@imdeadpool/codex-account-switcher", - "version": "0.1.20", + "version": "0.1.21", "description": "A command-line tool that lets you manage and switch between multiple Codex accounts instantly, no more constant logins and logouts.", "license": "MIT", "bin": { diff --git a/releases/v0.1.21.md b/releases/v0.1.21.md new file mode 100644 index 0000000..29040d0 --- /dev/null +++ b/releases/v0.1.21.md @@ -0,0 +1,24 @@ +# codex-account-switcher v0.1.21 + +## Summary +This release bumps the package one patch above the current npm version so the next manual publish can proceed. + +## What's changed +- Updated package metadata from `0.1.20` to `0.1.21`. +- Added release notes for `v0.1.21` so the GitHub release and npm publish notes have a concrete changelog entry. +- No runtime CLI behavior changed in this release. + +## Verification +- `npm test` +- `npm pack --dry-run` + +## Upgrade notes +- No breaking CLI changes. +- Manual publish should use `npm publish --access public` after verification. + +## Publish checklist +1. Review package metadata and release notes. +2. `npm test` +3. `npm pack --dry-run` +4. `npm publish --access public` +5. Create GitHub release `v0.1.21` from `releases/v0.1.21.md`