From cf55d664edc31c0d103a9783eae8ec5c1059178f Mon Sep 17 00:00:00 2001 From: Vincent Sarago Date: Tue, 27 Aug 2024 14:50:33 +0200 Subject: [PATCH] revert to fastapi and update version (#746) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * revert to fastapi and update version * fix makefile * Bump version: 3.0.0 → 3.0.1 * Update stac_fastapi/types/setup.py * Update CHANGES.md --- CHANGES.md | 9 ++++++++- Makefile | 4 ++-- VERSION | 2 +- pyproject.toml | 2 +- stac_fastapi/api/stac_fastapi/api/version.py | 2 +- .../extensions/stac_fastapi/extensions/version.py | 2 +- stac_fastapi/types/setup.py | 2 +- stac_fastapi/types/stac_fastapi/types/version.py | 2 +- 8 files changed, 16 insertions(+), 9 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 992d23c37..02363fc28 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 eef5dae35..a835bb52a 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 4a36342fc..cb2b00e4f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -3.0.0 +3.0.1 diff --git a/pyproject.toml b/pyproject.toml index 4786a7dd6..0c1c57477 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 5996faa40..da75bfe43 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 5996faa40..da75bfe43 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 9fa0ad9ee..e767b85ec 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 5996faa40..da75bfe43 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"