You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: RELEASING.md
+6
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,12 @@ This is a checklist for releasing a new version of **stac-fastapi**.
5
5
1. Determine the next version. We currently do not have published versioning guidelines, but there is some text on the subject here: <https://github.com/radiantearth/stac-spec/discussions/1184>.
6
6
2. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the new version.
7
7
3. Search and replace all instances of the current version number with the new version. As of this writing, there's 3 different `version.py` files, and one `VERSION` file, in the repo.
8
+
9
+
Note: You can use [`bump-my-version`](https://github.com/callowayproject/bump-my-version) CLI
10
+
```
11
+
bump-my-version bump --new-version 3.1.0
12
+
```
13
+
8
14
4. Update [CHANGES.md](./CHANGES.md) for the new version. Add the appropriate header, and update the links at the bottom of the file.
9
15
5. Audit CHANGES.md for completeness and accuracy. Also, ensure that the changes in this version are appropriate for the version number change (i.e. if you're making breaking changes, you should be increasing the `MAJOR` version number).
10
16
6. (optional) If you have permissions, run `scripts/publish --test` to test your PyPI publish. If successful, the published packages will be available on <http://test.pypy.org>.
0 commit comments