Skip to content

Commit

Permalink
release: v2.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed May 11, 2023
1 parent 8b2c13c commit 2744ba2
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
5 changes: 4 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [2.4.6] - 2023-05-11

As a part of this release, this repository was extracted from the main
[stac-fastapi](https://github.com/stac-utils/stac-fastapi) repository.

Expand Down Expand Up @@ -258,7 +260,8 @@ As a part of this release, this repository was extracted from the main

* First PyPi release!

[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/2.4.5..main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/2.4.6..main>
[2.4.6]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/2.4.5..2.4.6>
[2.4.5]: <https://github.com/stac-utils/stac-fastapi/compare/2.4.4..2.4.5>
[2.4.4]: <https://github.com/stac-utils/stac-fastapi/compare/2.4.3..2.4.4>
[2.4.3]: <https://github.com/stac-utils/stac-fastapi/compare/2.4.2..2.4.3>
Expand Down
18 changes: 12 additions & 6 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,20 @@

This is a checklist for releasing a new version of **stac-fastapi**.

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>.
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>.
2. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the new version.
3. Search and replace all instances of the current version number with the new version.
4. Update [CHANGES.md](./CHANGES.md) for the new version. Add the appropriate header, and update the links at the bottom of the file.
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).
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>.
4. Update [CHANGES.md](./CHANGES.md) for the new version.
Add the appropriate header, and update the links at the bottom of the file.
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).
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>.
7. Push your release branch, create a PR, and get approval.
8. Once the PR is merged, create a new (annotated, signed) tag on the appropriate commit. Name the tag `X.Y.Z`, and include `vX.Y.Z` as its annotation message.
8. Once the PR is merged, create a new (annotated, signed) tag on the appropriate commit.
Name the tag `X.Y.Z`, and include `vX.Y.Z` as its annotation message.
9. Push your tag to Github, which will kick off the [publishing workflow](.github/workflows/publish.yml).
10. Create a [new release](https://github.com/stac-utils/stac-fastapi/releases/new) targeting the new tag, and use the "Generate release notes" feature to populate the description. Publish the release and mark it as the latest.
10. Create a [new release](https://github.com/stac-utils/stac-fastapi/releases/new) targeting the new tag, and use the "Generate release notes" feature to populate the description.
Publish the release and mark it as the latest.
11. Publicize the release via the appropriate social channels, including [Gitter](https://matrix.to/#/#SpatioTemporal-Asset-Catalog_python:gitter.im).
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.4.4
2.4.6
2 changes: 1 addition & 1 deletion stac_fastapi/pgstac/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""library version."""
__version__ = "2.4.4"
__version__ = "2.4.6"

0 comments on commit 2744ba2

Please sign in to comment.