Skip to content

Commit 407c270

Browse files
authored
Release v1.11.0 (#1414)
* release: v1.11.0 * deps: bump Closes #1422 Closes #1421 Closes #1419 Closes #1418
1 parent 7ccc7df commit 407c270

File tree

5 files changed

+28
-26
lines changed

5 files changed

+28
-26
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,23 @@ jobs:
99
release:
1010
name: release
1111
runs-on: ubuntu-latest
12+
environment:
13+
name: pypi
14+
url: https://pypi.org/p/pystac
15+
permissions:
16+
id-token: write
1217
if: ${{ github.repository }} == 'stac-utils/pystac'
1318
steps:
1419
- uses: actions/checkout@v4
15-
1620
- name: Set up Python 3.x
1721
uses: actions/setup-python@v5
1822
with:
1923
python-version: "3.x"
20-
21-
- name: Install release dependencies
24+
- name: Install build
2225
run: |
2326
python -m pip install --upgrade pip
24-
pip install build twine
25-
26-
- name: Build and publish package
27-
env:
28-
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
29-
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
30-
run: |
31-
python -m build
32-
twine upload dist/*
27+
pip install build
28+
- name: Build
29+
run: python -m build
30+
- name: Publish to PyPI
31+
uses: pypa/gh-action-pypi-publish@release/v1

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [v1.11.0] - 2024-09-26
6+
57
### Added
68

79
- Add netCDF to pystac.media_type ([#1386](https://github.com/stac-utils/pystac/pull/1386))
@@ -862,7 +864,8 @@ use `Band.create`
862864

863865
Initial release.
864866

865-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.1..main>
867+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.11.0..main>
868+
[v1.11.0]: <https://github.com/stac-utils/pystac/compare/v1.10.1..v1.11.0>
866869
[v1.10.1]: <https://github.com/stac-utils/pystac/compare/v1.10.0..v1.10.1>
867870
[v1.10.0]: <https://github.com/stac-utils/pystac/compare/v1.9.0..v1.10.0>
868871
[v1.9.0]: <https://github.com/stac-utils/pystac/compare/v1.8.4..v1.9.0>

docs/requirements-docs.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ beautifulsoup4==4.12.3
4040
# pydata-sphinx-theme
4141
bleach==6.1.0
4242
# via nbconvert
43-
boto3==1.35.29
43+
boto3==1.35.32
4444
# via -r docs/requirements-docs.in
45-
botocore==1.35.29
45+
botocore==1.35.32
4646
# via
4747
# boto3
4848
# s3transfer
@@ -93,7 +93,7 @@ h11==0.14.0
9393
# via
9494
# httpcore
9595
# uvicorn
96-
httpcore==1.0.5
96+
httpcore==1.0.6
9797
# via httpx
9898
httpx==0.27.2
9999
# via jupyterlab
@@ -110,7 +110,7 @@ ipykernel==6.29.5
110110
# jupyter
111111
# jupyter-console
112112
# jupyterlab
113-
ipython==8.27.0
113+
ipython==8.28.0
114114
# via
115115
# -r docs/requirements-docs.in
116116
# ipykernel
@@ -290,7 +290,7 @@ pyzmq==26.2.0
290290
# jupyter-client
291291
# jupyter-console
292292
# jupyter-server
293-
rasterio==1.4.0
293+
rasterio==1.4.1
294294
# via -r docs/requirements-docs.in
295295
referencing==0.35.1
296296
# via
@@ -342,7 +342,7 @@ sphinx==8.0.2
342342
# pydata-sphinx-theme
343343
# sphinx-autobuild
344344
# sphinx-design
345-
sphinx-autobuild==2024.9.19
345+
sphinx-autobuild==2024.10.3
346346
# via -r docs/requirements-docs.in
347347
sphinx-design==0.6.1
348348
# via -r docs/requirements-docs.in
@@ -362,7 +362,7 @@ sphinxcontrib-serializinghtml==2.0.0
362362
# via sphinx
363363
stack-data==0.6.3
364364
# via ipython
365-
starlette==0.39.1
365+
starlette==0.39.2
366366
# via sphinx-autobuild
367367
terminado==0.18.1
368368
# via
@@ -395,7 +395,7 @@ traitlets==5.14.3
395395
# nbconvert
396396
# nbformat
397397
# nbsphinx
398-
types-python-dateutil==2.9.0.20240906
398+
types-python-dateutil==2.9.0.20241003
399399
# via arrow
400400
typing-extensions==4.12.2
401401
# via pydata-sphinx-theme

pystac/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "1.10.1"
3+
__version__ = "1.11.0"
44
"""Library version"""
55

66

requirements-dev.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ pygments==2.18.0
8181
# via doc8
8282
pympler==1.1
8383
# via asv
84-
pyproject-hooks==1.1.0
84+
pyproject-hooks==1.2.0
8585
# via build
8686
pytest==8.3.3
8787
# via
@@ -129,7 +129,7 @@ types-jsonschema==4.23.0.20240813
129129
# via -r requirements-dev.in
130130
types-orjson==3.6.2
131131
# via -r requirements-dev.in
132-
types-python-dateutil==2.9.0.20240906
132+
types-python-dateutil==2.9.0.20241003
133133
# via -r requirements-dev.in
134134
types-urllib3==1.26.25.14
135135
# via -r requirements-dev.in
@@ -139,7 +139,7 @@ urllib3==2.2.3
139139
# via requests
140140
vcrpy==6.0.1
141141
# via pytest-recording
142-
virtualenv==20.26.5
142+
virtualenv==20.26.6
143143
# via
144144
# -r requirements-dev.in
145145
# asv
@@ -148,7 +148,7 @@ webencodings==0.5.1
148148
# via html5lib
149149
wrapt==1.16.0
150150
# via vcrpy
151-
yarl==1.12.1
151+
yarl==1.13.1
152152
# via vcrpy
153153
zipp==3.20.2
154154
# via importlib-metadata

0 commit comments

Comments
 (0)