File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 `
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ export interface InjectableDependencies {
4848}
4949
5050class Webamp {
51- static VERSION = "2.3.0 " ;
51+ static VERSION = "2.3.1 " ;
5252 _actionEmitter : Emitter ;
5353 _root : ReactDOM . Root | null ;
5454 _disposable : Disposable ;
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments