Skip to content

Commit 4228783

Browse files
release: v6.0.0 (#277)
* release: v6.0.0 * fix: changelog * update version --------- Co-authored-by: Vincent Sarago <[email protected]>
1 parent 7b943bc commit 4228783

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CHANGES.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [6.0.0] - 2025-08-08
6+
57
### Fixed
68

79
- fix root-path handling when setting via env var or on app instance
@@ -15,6 +17,7 @@
1517
- rename `POSTGRES_PASS` to `PGPASSWORD` in config **breaking change**
1618
- rename `POSTGRES_PORT` to `PGPORT` in config **breaking change**
1719
- rename `POSTGRES_DBNAME` to `PGDATABASE` in config **breaking change**
20+
1821
```python
1922
from stac_fastapi.pgstac.config import PostgresSettings
2023

@@ -56,6 +59,7 @@
5659
- add `write_postgres_settings` option in `stac_fastapi.pgstac.db.connect_to_db` function to set specific settings for the `writer` DB connection pool
5760
- add specific error message when trying to create `Item` with null geometry (not supported by PgSTAC)
5861
- add support for Patch in transactions extension
62+
- CORS authentication setting
5963

6064
### removed
6165

@@ -477,7 +481,8 @@ As a part of this release, this repository was extracted from the main
477481

478482
- First PyPi release!
479483

480-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/5.0.3..main>
484+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/6.0.0..main>
485+
[6.0.0]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/5.0.3..6.0.0>
481486
[5.0.3]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/5.0.2..5.0.3>
482487
[5.0.2]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/5.0.1..5.0.2>
483488
[5.0.1]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/5.0.0..5.0.1>

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.0.2
1+
6.0.0

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ignore = [
2929

3030

3131
[tool.bumpversion]
32-
current_version = "5.0.2"
32+
current_version = "6.0.0"
3333
parse = """(?x)
3434
(?P<major>\\d+)\\.
3535
(?P<minor>\\d+)\\.

stac_fastapi/pgstac/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""library version."""
22

3-
__version__ = "5.0.2"
3+
__version__ = "6.0.0"

0 commit comments

Comments
 (0)