diff --git a/CHANGES.md b/CHANGES.md index 4111243..31934cd 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [6.0.2] - 2025-10-03 + +- add `CORS_ORIGIN_REGEX` settings ([#298](https://github.com/stac-utils/stac-fastapi-pgstac/pull/298)) + ## [6.0.1] - 2025-09-30 - fix: ignore 'rel:items' entries when generating links ([#294](https://github.com/stac-utils/stac-fastapi-pgstac/pull/294)) @@ -485,7 +489,8 @@ As a part of this release, this repository was extracted from the main - First PyPi release! -[Unreleased]: +[Unreleased]: +[6.0.2]: [6.0.1]: [6.0.0]: [5.0.3]: diff --git a/VERSION b/VERSION index 5fe6072..9b9a244 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.0.1 +6.0.2 diff --git a/pyproject.toml b/pyproject.toml index d399e00..a0ebcec 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ ignore = [ [tool.bumpversion] -current_version = "6.0.1" +current_version = "6.0.2" parse = """(?x) (?P\\d+)\\. (?P\\d+)\\. diff --git a/stac_fastapi/pgstac/version.py b/stac_fastapi/pgstac/version.py index 80804ba..f4278d4 100644 --- a/stac_fastapi/pgstac/version.py +++ b/stac_fastapi/pgstac/version.py @@ -1,3 +1,3 @@ """library version.""" -__version__ = "6.0.1" +__version__ = "6.0.2"