Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add MAINTAINERS.md #50

Merged
merged 2 commits into from
Feb 27, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Release Process

- Close all issues for planned release
- Checkout and pull `main` branch in git from origin
- Run `npm version <semver-pre-release, e.g., 1.6.0-alpha>` (Update in package.json to be a semver pre-release, then commit, tag with semver pre-release and auto run `git push && git push --tags`)
- Triggers CI build from tag to call `npm run buildAll && npm publish --access public` (Publish npm package to npmjs.com)
- Verify pre-released package
- Run m30pm (via npx)
- Run `npx m30pm --version`
- Run `npx m30pm project create --help`
- Run `npm version <semver-release, e.g., 1.6.0>` (Update in package.json to be a semver release, then commit, tag with semver release and auto run `git push && git push --tags`)
- Triggers CI build from tag to call `npm run buildAll && npm publish --access public` (Publish npm package to npmjs.com)
- Create new release (on GitHub)
- select (final release) tag
- auto-generate release notes
- publish final release

# Versioning

## Goals

- Enable Mach 30 to be able to produce incremental releases of m30pm

## Schema

- semantic version
- dash (except for final release)
- release keyword (except for final release)
- alpha.n (initial pre-releases numbered n)
- beta.n (optional intermediary pre-release numbered n)
- rc.n (release candidate, final pre-release numbered n)

### Examples

- v1.6.0-alpha.0
- v1.6.0-beta.2
- v1.6.0-rc.1
- v1.6.0