File tree Expand file tree Collapse file tree 3 files changed +16
-14
lines changed Expand file tree Collapse file tree 3 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
862864Initial 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 >
Original file line number Diff line number Diff line change 11import os
22
3- __version__ = "1.10.1 "
3+ __version__ = "1.11.0 "
44"""Library version"""
55
66
You can’t perform that action at this time.
0 commit comments