Skip to content

Commit 0b405ba

Browse files
committed
update to v3.2.0
1 parent d3b355a commit 0b405ba

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ jobs:
2626
- name: Build and publish stac-fastapi-core
2727
working-directory: stac_fastapi/core
2828
env:
29-
TWINE_USERNAME: "__token__" # Hardcoded username for API token authentication
30-
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} # Your PyPI API token from GitHub Secrets
29+
TWINE_USERNAME: "__token__"
30+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
3131
run: |
3232
# Build package
3333
python setup.py sdist bdist_wheel
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "3.1.0"
2+
__version__ = "3.2.0"

stac_fastapi/elasticsearch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"stac-fastapi.core==3.1.0",
9+
"stac-fastapi.core==3.2.0",
1010
"elasticsearch[async]==8.11.0",
1111
"elasticsearch-dsl==8.11.0",
1212
"uvicorn",

stac_fastapi/opensearch/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
desc = f.read()
77

88
install_requires = [
9-
"stac-fastapi.core==3.1.0",
9+
"stac-fastapi.core==3.2.0",
1010
"opensearch-py==2.4.2",
1111
"opensearch-py[async]==2.4.2",
1212
"uvicorn",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""library version."""
2-
__version__ = "3.1.0"
2+
__version__ = "3.2.0"

0 commit comments

Comments
 (0)