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 9
9
release :
10
10
name : release
11
11
runs-on : ubuntu-latest
12
+ environment :
13
+ name : pypi
14
+ url : https://pypi.org/p/pystac
15
+ permissions :
16
+ id-token : write
12
17
if : ${{ github.repository }} == 'stac-utils/pystac'
13
18
steps :
14
19
- uses : actions/checkout@v4
15
-
16
20
- name : Set up Python 3.x
17
21
uses : actions/setup-python@v5
18
22
with :
19
23
python-version : " 3.x"
20
-
21
- - name : Install release dependencies
24
+ - name : Install build
22
25
run : |
23
26
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 2
2
3
3
## [ Unreleased]
4
4
5
+ ## [ v1.11.0] - 2024-09-26
6
+
5
7
### Added
6
8
7
9
- Add netCDF to pystac.media_type ([ #1386 ] ( https://github.com/stac-utils/pystac/pull/1386 ) )
@@ -861,7 +863,8 @@ use `Band.create`
861
863
862
864
Initial release.
863
865
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 >
865
868
[ v1.10.1 ] : < https://github.com/stac-utils/pystac/compare/v1.10.0..v1.10.1 >
866
869
[ v1.10.0 ] : < https://github.com/stac-utils/pystac/compare/v1.9.0..v1.10.0 >
867
870
[ 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 1
1
import os
2
2
3
- __version__ = "1.10.1 "
3
+ __version__ = "1.11.0 "
4
4
"""Library version"""
5
5
6
6
You can’t perform that action at this time.
0 commit comments