From 3d85ba6d50fe8f2d9704b207fd814e38210d793b Mon Sep 17 00:00:00 2001 From: Jonathan Healy Date: Thu, 30 May 2024 16:52:05 +0800 Subject: [PATCH] Stac fastapi v3.0.0a1 (#265) **Related Issue(s):** - # **Description:** **PR Checklist:** - [ ] Code is formatted and linted (run `pre-commit run --all-files`) - [ ] Tests pass (run `make test`) - [ ] Documentation has been updated to reflect changes, if applicable - [ ] Changes are added to the changelog --- CHANGELOG.md | 4 ++++ stac_fastapi/core/setup.py | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88b1f14f..9656f5bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Changed + +- Updated stac-fastapi libraries to v3.0.0a1 [#265](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/265) + ### Fixed - API sort extension tests [#264](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/264) diff --git a/stac_fastapi/core/setup.py b/stac_fastapi/core/setup.py index 7f8d0b31..c4071651 100644 --- a/stac_fastapi/core/setup.py +++ b/stac_fastapi/core/setup.py @@ -10,9 +10,9 @@ "attrs>=23.2.0", "pydantic[dotenv]", "stac_pydantic>=3", - "stac-fastapi.types==3.0.0a", - "stac-fastapi.api==3.0.0a", - "stac-fastapi.extensions==3.0.0a", + "stac-fastapi.types==3.0.0a1", + "stac-fastapi.api==3.0.0a1", + "stac-fastapi.extensions==3.0.0a1", "orjson", "overrides", "geojson-pydantic",