diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a98877c..c763b4aa 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.0a1] + ### Changed - Unskip temporal open window test [#254](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/pull/254) @@ -202,7 +204,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.0a1]: [v3.0.0a0]: [v2.4.1]: [v2.4.0]: diff --git a/docker-compose.basic_auth_protected.yml b/docker-compose.basic_auth_protected.yml index cedbf154..cc4546cd 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=2.1 + - STAC_FASTAPI_VERSION=3.0.0a1 - 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 ccac31ac..cc0ba374 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=2.1 + - STAC_FASTAPI_VERSION=3.0.0a1 - APP_HOST=0.0.0.0 - APP_PORT=8080 - RELOAD=true diff --git a/docker-compose.yml b/docker-compose.yml index 8b5e2f07..4eb29f3e 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=2.1 + - STAC_FASTAPI_VERSION=3.0.0a1 - 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 8f34926b..fb328f04 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.0a0" +__version__ = "3.0.0a1" diff --git a/stac_fastapi/elasticsearch/setup.py b/stac_fastapi/elasticsearch/setup.py index 489227c8..e46f3d55 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.0a0", + "stac-fastapi.core==3.0.0a1", "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 8f34926b..fb328f04 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.0a0" +__version__ = "3.0.0a1" diff --git a/stac_fastapi/opensearch/setup.py b/stac_fastapi/opensearch/setup.py index 2c4ed2fa..7c5cc6f0 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.0a0", + "stac-fastapi.core==3.0.0a1", "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 8f34926b..fb328f04 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.0a0" +__version__ = "3.0.0a1"