Skip to content

Commit 5de9496

Browse files
captbaritoneclaude
andcommitted
Bump version to 2.3.1
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6c3dd2a commit 5de9496

3 files changed

Lines changed: 8 additions & 7 deletions

File tree

.claude/skills/release/SKILL.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ description: Cut a new webamp npm release
66
# Release webamp to npm
77

88
## Steps
9-
1. Create and push a git tag: `git tag v{X.Y.Z} && git push origin v{X.Y.Z}`
10-
2. CI (`.github/workflows/ci.yml`) builds, tests, publishes
11-
3. Monitor: `gh run list --limit 3` then `gh run watch <id> --exit-status`
12-
4. Verify: `npm view webamp versions --json | tail -5`
9+
1. Bump `version` in `packages/webamp/package.json` and `Webamp.VERSION` in `packages/webamp/js/webampLazy.tsx` to match the new version
10+
2. Commit and push the version bump
11+
3. Create and push a git tag on that commit: `git tag v{X.Y.Z} && git push origin v{X.Y.Z}`
12+
4. CI (`.github/workflows/ci.yml`) builds, tests, publishes
13+
5. Monitor: `gh run list --limit 3` then `gh run watch <id> --exit-status`
14+
6. Verify: `npm view webamp versions --json | tail -5`
1315

1416
## How it works
15-
- Bump `version` in `packages/webamp/package.json` and `Webamp.VERSION` in `packages/webamp/js/webampLazy.tsx` to match the new version
1617
- Don't bump ani-cursor or winamp-eqf versions — CI sets those from the git tag
1718
- All 3 packages (webamp, ani-cursor, winamp-eqf) get the same version
1819
- Tagged releases publish to `latest`; master pushes publish `0.0.0-next-{sha}` to `next`

packages/webamp/js/webampLazy.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export interface InjectableDependencies {
4848
}
4949

5050
class Webamp {
51-
static VERSION = "2.3.0";
51+
static VERSION = "2.3.1";
5252
_actionEmitter: Emitter;
5353
_root: ReactDOM.Root | null;
5454
_disposable: Disposable;

packages/webamp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "webamp",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Winamp 2 implemented in HTML5 and JavaScript",
55
"files": [
66
"built",

0 commit comments

Comments
 (0)