diff --git a/CHANGELOG.md b/CHANGELOG.md index c918a12c..d530d270 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v3.0.0a2] + ### Added - Queryables landing page and collection links when the Filter Extension is enabled [#267](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/267) @@ -218,7 +220,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Added db_to_stac serializer to item_collection method in core.py. -[Unreleased]: +[Unreleased]: +[v3.0.0a2]: [v3.0.0a1]: [v3.0.0a0]: [v2.4.1]: diff --git a/docker-compose.basic_auth_protected.yml b/docker-compose.basic_auth_protected.yml index cc4546cd..c260f3af 100644 --- a/docker-compose.basic_auth_protected.yml +++ b/docker-compose.basic_auth_protected.yml @@ -11,7 +11,7 @@ services: environment: - STAC_FASTAPI_TITLE=stac-fastapi-elasticsearch - STAC_FASTAPI_DESCRIPTION=A STAC FastAPI with an Elasticsearch backend - - STAC_FASTAPI_VERSION=3.0.0a1 + - STAC_FASTAPI_VERSION=3.0.0a2 - APP_HOST=0.0.0.0 - APP_PORT=8080 - RELOAD=true diff --git a/docker-compose.basic_auth_public.yml b/docker-compose.basic_auth_public.yml index cc0ba374..0a5454cf 100644 --- a/docker-compose.basic_auth_public.yml +++ b/docker-compose.basic_auth_public.yml @@ -11,7 +11,7 @@ services: environment: - STAC_FASTAPI_TITLE=stac-fastapi-elasticsearch - STAC_FASTAPI_DESCRIPTION=A STAC FastAPI with an Elasticsearch backend - - STAC_FASTAPI_VERSION=3.0.0a1 + - STAC_FASTAPI_VERSION=3.0.0a2 - APP_HOST=0.0.0.0 - APP_PORT=8080 - RELOAD=true diff --git a/docker-compose.yml b/docker-compose.yml index 4eb29f3e..23455e2e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -43,7 +43,7 @@ services: environment: - STAC_FASTAPI_TITLE=stac-fastapi-opensearch - STAC_FASTAPI_DESCRIPTION=A STAC FastAPI with an Opensearch backend - - STAC_FASTAPI_VERSION=3.0.0a1 + - STAC_FASTAPI_VERSION=3.0.0a2 - APP_HOST=0.0.0.0 - APP_PORT=8082 - RELOAD=true diff --git a/stac_fastapi/core/stac_fastapi/core/version.py b/stac_fastapi/core/stac_fastapi/core/version.py index fb328f04..76f13200 100644 --- a/stac_fastapi/core/stac_fastapi/core/version.py +++ b/stac_fastapi/core/stac_fastapi/core/version.py @@ -1,2 +1,2 @@ """library version.""" -__version__ = "3.0.0a1" +__version__ = "3.0.0a2" diff --git a/stac_fastapi/elasticsearch/setup.py b/stac_fastapi/elasticsearch/setup.py index e46f3d55..b2347b49 100644 --- a/stac_fastapi/elasticsearch/setup.py +++ b/stac_fastapi/elasticsearch/setup.py @@ -6,7 +6,7 @@ desc = f.read() install_requires = [ - "stac-fastapi.core==3.0.0a1", + "stac-fastapi.core==3.0.0a2", "elasticsearch[async]==8.11.0", "elasticsearch-dsl==8.11.0", "uvicorn", diff --git a/stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/version.py b/stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/version.py index fb328f04..76f13200 100644 --- a/stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/version.py +++ b/stac_fastapi/elasticsearch/stac_fastapi/elasticsearch/version.py @@ -1,2 +1,2 @@ """library version.""" -__version__ = "3.0.0a1" +__version__ = "3.0.0a2" diff --git a/stac_fastapi/opensearch/setup.py b/stac_fastapi/opensearch/setup.py index 7c5cc6f0..0619d32e 100644 --- a/stac_fastapi/opensearch/setup.py +++ b/stac_fastapi/opensearch/setup.py @@ -6,7 +6,7 @@ desc = f.read() install_requires = [ - "stac-fastapi.core==3.0.0a1", + "stac-fastapi.core==3.0.0a2", "opensearch-py==2.4.2", "opensearch-py[async]==2.4.2", "uvicorn", diff --git a/stac_fastapi/opensearch/stac_fastapi/opensearch/version.py b/stac_fastapi/opensearch/stac_fastapi/opensearch/version.py index fb328f04..76f13200 100644 --- a/stac_fastapi/opensearch/stac_fastapi/opensearch/version.py +++ b/stac_fastapi/opensearch/stac_fastapi/opensearch/version.py @@ -1,2 +1,2 @@ """library version.""" -__version__ = "3.0.0a1" +__version__ = "3.0.0a2"