Skip to content

Commit 9fb7840

Browse files
Release/v5.0.0 (#212)
* prepare release and update stac-fastapi versions * Bump version: 4.0.3 → 5.0.0
1 parent 674b1ee commit 9fb7840

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

Diff for: CHANGES.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,12 @@
22

33
## [Unreleased]
44

5+
## [5.0.0] - 2025-03-10
6+
57
### Changed
68

79
- move Postgres settings into separate `PostgresSettings` class and defer loading until connecting to database ([#209](https://github.com/stac-utils/stac-fastapi-pgstac/pull/209))
10+
- update `stac-fastapi-*` version requirements to `>=5.1,<6.0`
811

912
## [4.0.3] - 2025-03-10
1013

@@ -393,7 +396,8 @@ As a part of this release, this repository was extracted from the main
393396

394397
- First PyPi release!
395398

396-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/4.0.3..main>
399+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/5.0.0..main>
400+
[5.0.0]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/4.0.3..5.0.0>
397401
[4.0.3]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/4.0.2..4.0.3>
398402
[4.0.2]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/4.0.1..4.0.2>
399403
[4.0.1]: <https://github.com/stac-utils/stac-fastapi-pgstac/compare/4.0.0..4.0.1>

Diff for: VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
4.0.3
1+
5.0.0

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ ignore = [
2929

3030

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

Diff for: setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
"orjson",
1111
"pydantic",
1212
"stac_pydantic==3.1.*",
13-
"stac-fastapi.api>=5.0,<5.1",
14-
"stac-fastapi.extensions>=5.0,<5.1",
15-
"stac-fastapi.types>=5.0,<5.1",
13+
"stac-fastapi.api>=5.1,<6.0",
14+
"stac-fastapi.extensions>=5.1,<6.0",
15+
"stac-fastapi.types>=5.1,<6.0",
1616
"asyncpg",
1717
"buildpg",
1818
"brotli_asgi",

Diff for: stac_fastapi/pgstac/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""library version."""
22

3-
__version__ = "4.0.3"
3+
__version__ = "5.0.0"

Diff for: tests/api/test_api.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,9 @@ async def test_landing_links(app_client):
8383
"""test landing page links."""
8484
landing = await app_client.get("/")
8585
assert landing.status_code == 200, landing.text
86-
assert "Queryables" in [link.get("title") for link in landing.json()["links"]]
86+
assert "Queryables available for this Catalog" in [
87+
link.get("title") for link in landing.json()["links"]
88+
]
8789

8890

8991
async def test_get_queryables_content_type(app_client, load_test_collection):

0 commit comments

Comments
 (0)