diff --git a/CHANGES.md b/CHANGES.md index 992d23c3..02363fc2 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [3.0.1] - 2024-08-27 + +### Changed + +* Update fastapi version to `>=0.109.0` + ## [3.0.0] - 2024-07-29 Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#changelog @@ -468,7 +474,8 @@ Full changelog: https://stac-utils.github.io/stac-fastapi/migrations/v3.0.0/#cha * First PyPi release! -[Unreleased]: +[Unreleased]: +[3.0.1]: [3.0.0]: [2.5.5.post1]: [2.5.5]: diff --git a/Makefile b/Makefile index eef5dae3..a835bb52 100644 --- a/Makefile +++ b/Makefile @@ -11,12 +11,12 @@ install: .PHONY: docs-image docs-image: - docker-compose -f docker-compose.docs.yml \ + docker compose -f docker-compose.docs.yml \ build .PHONY: docs docs: docs-image - docker-compose -f docker-compose.docs.yml \ + docker compose -f docker-compose.docs.yml \ run docs .PHONY: test diff --git a/VERSION b/VERSION index 4a36342f..cb2b00e4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 +3.0.1 diff --git a/pyproject.toml b/pyproject.toml index 4786a7dd..0c1c5747 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ section-order = ["future", "standard-library", "third-party", "first-party", "lo quote-style = "double" [tool.bumpversion] -current_version = "3.0.0" +current_version = "3.0.1" parse = """(?x) (?P\\d+)\\. (?P\\d+)\\. diff --git a/stac_fastapi/api/stac_fastapi/api/version.py b/stac_fastapi/api/stac_fastapi/api/version.py index 5996faa4..da75bfe4 100644 --- a/stac_fastapi/api/stac_fastapi/api/version.py +++ b/stac_fastapi/api/stac_fastapi/api/version.py @@ -1,3 +1,3 @@ """Library version.""" -__version__ = "3.0.0" +__version__ = "3.0.1" diff --git a/stac_fastapi/extensions/stac_fastapi/extensions/version.py b/stac_fastapi/extensions/stac_fastapi/extensions/version.py index 5996faa4..da75bfe4 100644 --- a/stac_fastapi/extensions/stac_fastapi/extensions/version.py +++ b/stac_fastapi/extensions/stac_fastapi/extensions/version.py @@ -1,3 +1,3 @@ """Library version.""" -__version__ = "3.0.0" +__version__ = "3.0.1" diff --git a/stac_fastapi/types/setup.py b/stac_fastapi/types/setup.py index 9fa0ad9e..e767b85e 100644 --- a/stac_fastapi/types/setup.py +++ b/stac_fastapi/types/setup.py @@ -6,7 +6,7 @@ desc = f.read() install_requires = [ - "fastapi-slim>=0.111.0", + "fastapi>=0.109.0", "attrs>=23.2.0", "pydantic-settings>=2", "stac_pydantic~=3.1", diff --git a/stac_fastapi/types/stac_fastapi/types/version.py b/stac_fastapi/types/stac_fastapi/types/version.py index 5996faa4..da75bfe4 100644 --- a/stac_fastapi/types/stac_fastapi/types/version.py +++ b/stac_fastapi/types/stac_fastapi/types/version.py @@ -1,3 +1,3 @@ """Library version.""" -__version__ = "3.0.0" +__version__ = "3.0.1"