Skip to content

Commit 3253c7a

Browse files
committed
release: v1.11.0
1 parent 57a8b86 commit 3253c7a

File tree

3 files changed

+16
-14
lines changed

3 files changed

+16
-14
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))
@@ -861,7 +863,8 @@ use `Band.create`
861863

862864
Initial release.
863865

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

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

0 commit comments

Comments
 (0)