Skip to content

Commit b7027ec

Browse files
authored
Merge pull request #224 from stac-utils/v2.2.0
v2.2.0
2 parents 8d017dd + 9a92a75 commit b7027ec

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [v2.2.0]
11+
1012
### Added
1113

1214
- use index templates for Collection and Item indices [#208](https://github.com/stac-utils/stac-fastapi-elasticsearch-opensearch/discussions/208)
@@ -149,7 +151,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
149151
- Added db_to_stac serializer to item_collection method in core.py.
150152

151153

152-
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.1.0...main>
154+
[Unreleased]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.2.0...main>
155+
[v2.2.0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.1.0...v2.2.0>
153156
[v2.1.0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v2.0.0...v2.1.0>
154157
[v2.0.0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v1.1.0...v2.0.0>
155158
[v1.1.0]: <https://github.com/stac-utils/stac-fastapi-elasticsearch/tree/v1.0.0...v1.1.0>

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<p align="left">
66
<img src="https://github.com/radiantearth/stac-site/raw/master/images/logo/stac-030-long.png" width=600>
77
<p align="left"><b>Elasticsearch and Opensearch backends for the stac-fastapi project.</b></p>
8+
</p>
89

910

1011
[![PyPI version](https://badge.fury.io/py/stac-fastapi.elasticsearch.svg)](https://badge.fury.io/py/stac-fastapi.elasticsearch)

examples/pip_docker/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ WORKDIR /app
1515

1616
COPY . /app
1717

18-
RUN pip install stac-fastapi.elasticsearch==2.1.0
18+
RUN pip install stac-fastapi.elasticsearch==2.2.0
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "2.1.0"
2+
__version__ = "2.2.0"

stac_fastapi/elasticsearch/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"stac-fastapi.core==2.1.0",
9+
"stac-fastapi.core==2.2.0",
1010
"elasticsearch[async]==8.11.0",
1111
"elasticsearch-dsl==8.11.0",
1212
"uvicorn",
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "2.1.0"
2+
__version__ = "2.2.0"

stac_fastapi/opensearch/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"stac-fastapi.core==2.1.0",
9+
"stac-fastapi.core==2.2.0",
1010
"opensearch-py==2.4.2",
1111
"opensearch-py[async]==2.4.2",
1212
"uvicorn",
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "2.1.0"
2+
__version__ = "2.2.0"

0 commit comments

Comments
 (0)