Skip to content

Commit 6d65525

Browse files
Release/v3.0.5 (#777)
* update changelog * Bump version: 3.0.4 → 3.0.5 * remove print
1 parent 1863ea0 commit 6d65525

File tree

7 files changed

+10
-7
lines changed

7 files changed

+10
-7
lines changed

CHANGES.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [3.0.5] - 2025-01-10
6+
57
### Removed
68

79
* Remove `warnings` in `CollectionSearchExtension.from_extensions()` methods when passing `unknown` extensions
@@ -513,7 +515,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha
513515

514516
* First PyPi release!
515517

516-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.4..main>
518+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.5..main>
519+
[3.0.5]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.4..3.0.5>
517520
[3.0.4]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.3..3.0.4>
518521
[3.0.3]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.2..3.0.3>
519522
[3.0.2]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.1..3.0.2>

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.4
1+
3.0.5

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo
2424
quote-style = "double"
2525

2626
[tool.bumpversion]
27-
current_version = "3.0.4"
27+
current_version = "3.0.5"
2828
parse = """(?x)
2929
(?P<major>\\d+)\\.
3030
(?P<minor>\\d+)\\.
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "3.0.4"
3+
__version__ = "3.0.5"

stac_fastapi/api/tests/test_app_prefix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def test_api_prefix_with_root_path(TestCoreClient, prefix):
162162
with TestClient(api.app, base_url="http://stac.io", root_path="/api/v1") as client:
163163
landing = client.get(f"{prefix}/")
164164
assert landing.status_code == 200, landing.json()
165-
print(landing.text)
165+
166166
service_doc = client.get(f"{prefix}/api.html")
167167
assert service_doc.status_code == 200, service_doc.text
168168

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

3-
__version__ = "3.0.4"
3+
__version__ = "3.0.5"
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Library version."""
22

3-
__version__ = "3.0.4"
3+
__version__ = "3.0.5"

0 commit comments

Comments
 (0)