Skip to content

Commit 357b4e3

Browse files
authored
release: v0.7.1 (#542)
1 parent 8cfd3db commit 357b4e3

File tree

3 files changed

+17
-14
lines changed

3 files changed

+17
-14
lines changed

CHANGELOG.md

+16-9
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
77

88
## [Unreleased]
99

10+
## [v0.7.1] - 2023-06-13
11+
12+
### Fixed
13+
14+
- Remove unnecessary `typing_extensions` import [#541](https://github.com/stac-utils/pystac-client/pull/541)
15+
1016
## [v0.7.0] - 2023-06-12
1117

1218
### Added
@@ -299,19 +305,20 @@ are in a single HTTP session, handle pagination and respects conformance
299305

300306
Initial release.
301307

302-
[Unreleased]: <https://github.com/stac-utils/pystac-client/compare/v0.7.0...main>
308+
[Unreleased]: <https://github.com/stac-utils/pystac-client/compare/v0.7.1...main>
309+
[v0.7.1]: <https://github.com/stac-utils/pystac-client/compare/v0.7.0...v0.7.1>
303310
[v0.7.0]: <https://github.com/stac-utils/pystac-client/compare/v0.6.1...v0.7.0>
304311
[v0.6.1]: <https://github.com/stac-utils/pystac-client/compare/v0.6.0...v0.6.1>
305312
[v0.6.0]: <https://github.com/stac-utils/pystac-client/compare/v0.5.1...v0.6.0>
306313
[v0.5.1]: <https://github.com/stac-utils/pystac-client/compare/v0.5.0...v0.5.1>
307314
[v0.5.0]: <https://github.com/stac-utils/pystac-client/compare/v0.4.0...v0.5.0>
308315
[v0.4.0]: <https://github.com/stac-utils/pystac-client/compare/v0.3.5...v0.4.0>
309-
[v0.3.5]: <https://github.com/stac-utils/pystac-client/compare/v0.3.4..v0.3.5>
310-
[v0.3.4]: <https://github.com/stac-utils/pystac-client/compare/v0.3.3..v0.3.4>
311-
[v0.3.3]: <https://github.com/stac-utils/pystac-client/compare/v0.3.2..v0.3.3>
312-
[v0.3.2]: <https://github.com/stac-utils/pystac-client/compare/v0.3.1..v0.3.2>
313-
[v0.3.1]: <https://github.com/stac-utils/pystac-client/compare/v0.3.0..v0.3.1>
314-
[v0.3.0]: <https://github.com/stac-utils/pystac-client/compare/v0.2.0..v0.3.0>
315-
[v0.2.0]: <https://github.com/stac-utils/pystac-client/compare/v0.1.1..v0.2.0>
316-
[v0.1.1]: <https://github.com/stac-utils/pystac-client/compare/v0.1.0..v0.1.1>
316+
[v0.3.5]: <https://github.com/stac-utils/pystac-client/compare/v0.3.4...v0.3.5>
317+
[v0.3.4]: <https://github.com/stac-utils/pystac-client/compare/v0.3.3...v0.3.4>
318+
[v0.3.3]: <https://github.com/stac-utils/pystac-client/compare/v0.3.2...v0.3.3>
319+
[v0.3.2]: <https://github.com/stac-utils/pystac-client/compare/v0.3.1...v0.3.2>
320+
[v0.3.1]: <https://github.com/stac-utils/pystac-client/compare/v0.3.0...v0.3.1>
321+
[v0.3.0]: <https://github.com/stac-utils/pystac-client/compare/v0.2.0...v0.3.0>
322+
[v0.2.0]: <https://github.com/stac-utils/pystac-client/compare/v0.1.1...v0.2.0>
323+
[v0.1.1]: <https://github.com/stac-utils/pystac-client/compare/v0.1.0...v0.1.1>
317324
[v0.1.0]: <https://github.com/stac-utils/pystac-client/tree/v0.1.0>

RELEASING.md

-4
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@
1313
6. If necessary, update the versions table in [the documentation](docs/index.rst)
1414
7. (optional) Build the package locally and inspect its contents: `pip install build && python -m build`
1515
8. Open a pull request for your `release/vX.Y.Z` branch against the appropriate branch (either `main` or a version branch, e.g. `v0.3`).
16-
Include a section in the pull request description with the CHANGELOG contents for this version.
1716
9. After pull request merge, create an annotated tag for your version, e.g. `git tag -a vX.Y.Z`.
18-
The contents of the annotated tag should be the contents of the changelog for this version.
19-
Make sure to remove any leading `#` characters, as they will be considered comments in the git tag body.
2017
10. Push the tag.
2118
This will trigger [the Github release workflow](.github/workflows/release.yml) and publish to PyPI.
2219
11. [Create a new release on Github](https://github.com/stac-utils/pystac-client/releases/new) pointing to the new tag.
23-
Include the CHANGELOG notes from this version.

pystac_client/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0"
1+
__version__ = "0.7.1"

0 commit comments

Comments
 (0)