-
Notifications
You must be signed in to change notification settings - Fork 98
Update release process and add development branch info for contributing #714
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
Conversation
| #### Release Naming Conventions | ||
|
|
||
| The following are the release naming conventions: | ||
|
|
||
| 1. Current dev version: Bumped version of last release with `dev` added to the end | ||
| * **PROPOSAL**: Version number is determined by [Semantic Versioning](https://semver.org/spec/v2.0.0.html) | ||
| 1. Release version: Remove `dev` from current dev version | ||
|
|
||
| Example: | ||
| * If | ||
| * Previous Release Version == `1.0.0` | ||
| * Then | ||
| * Current Dev Version: `1.0.1dev` | ||
| * Release Version: `1.0.1` | ||
| * Next Dev Version: `1.0.2dev` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is a new section
|
|
||
| #### Step 1: Release on Github | ||
| *NOTE: This section refers to version names given in Release Naming Conventions section above.* | ||
| 1. Create a release branch named `release-{Release Version}` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new
| 1. Update `planet/__version__.py` to Next Dev Version | ||
| 1. Merge PR for release branch |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jreiberkyle seems good to me. This process is more careful about the state of the main branch than I usually am, and that's good.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great! This is inspired by the OpenLayers release process (and succinct overview by @tschaub). I was glad to have a template to work from.
|
@sgillies your general thumbs up/down on changing the version in |
Co-authored-by: Tim Schaub <tschaub@users.noreply.github.com>
mainis the name of the next release +dev, a post-release stepAttribution: this is inspired by the openlayers release process.
Closes #691