Skip to content

Commit

Permalink
Release/v3.0.5 (#777)
Browse files Browse the repository at this point in the history
* update changelog

* Bump version: 3.0.4 → 3.0.5

* remove print
  • Loading branch information
vincentsarago authored Jan 10, 2025
1 parent 1863ea0 commit 6d65525
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 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]

## [3.0.5] - 2025-01-10

### Removed

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

* First PyPi release!

[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.4..main>
[Unreleased]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.5..main>
[3.0.5]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.4..3.0.5>
[3.0.4]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.3..3.0.4>
[3.0.3]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.2..3.0.3>
[3.0.2]: <https://github.com/stac-utils/stac-fastapi/compare/3.0.1..3.0.2>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0.4
3.0.5
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo
quote-style = "double"

[tool.bumpversion]
current_version = "3.0.4"
current_version = "3.0.5"
parse = """(?x)
(?P<major>\\d+)\\.
(?P<minor>\\d+)\\.
Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/api/stac_fastapi/api/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "3.0.4"
__version__ = "3.0.5"
2 changes: 1 addition & 1 deletion stac_fastapi/api/tests/test_app_prefix.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def test_api_prefix_with_root_path(TestCoreClient, prefix):
with TestClient(api.app, base_url="http://stac.io", root_path="/api/v1") as client:
landing = client.get(f"{prefix}/")
assert landing.status_code == 200, landing.json()
print(landing.text)

service_doc = client.get(f"{prefix}/api.html")
assert service_doc.status_code == 200, service_doc.text

Expand Down
2 changes: 1 addition & 1 deletion stac_fastapi/extensions/stac_fastapi/extensions/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "3.0.4"
__version__ = "3.0.5"
2 changes: 1 addition & 1 deletion stac_fastapi/types/stac_fastapi/types/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Library version."""

__version__ = "3.0.4"
__version__ = "3.0.5"

0 comments on commit 6d65525

Please sign in to comment.