Skip to content

Commit c2de7ca

Browse files
committedMay 3, 2024
release: v1.10.1
1 parent 987477d commit c2de7ca

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed
 

‎CHANGELOG.md

+6-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
## [v1.10.1] - 2024-05-03
6+
57
### Fixed
68

79
- Don't transform hrefs in `Item.__getstate__` ([#1337](https://github.com/stac-utils/pystac/pull/1337))
@@ -18,7 +20,7 @@
1820

1921
- Update css for HTML display ([#1311](https://github.com/stac-utils/pystac/pull/1311))
2022
- Made item pickles smaller by changing how nested links are stored([#1285](https://github.com/stac-utils/pystac/pull/1285))
21-
- Updated documentation code examples that use AWS S3 for file storage ([#1308](https://github.com/stac-utils/pystac/pull/1308)
23+
- Updated documentation code examples that use AWS S3 for file storage ([#1308](https://github.com/stac-utils/pystac/pull/1308))
2224

2325
### Fixed
2426

@@ -28,7 +30,7 @@
2830

2931
### Added
3032

31-
- Simpler extension interface ([#1243](https://github.com/stac-utils/pystac/pull/1243)])
33+
- Simpler extension interface ([#1243](https://github.com/stac-utils/pystac/pull/1243))
3234
- More permissive schema_uri matching to allow future versions of extension schemas ([#1231](https://github.com/stac-utils/pystac/pull/1231))
3335
- Better error messages from jsonschema validation ([#1233](https://github.com/stac-utils/pystac/pull/1233))
3436
- `validate_all_dict` replaces the previous implementation of `validate_all` (i.e., `validate_all` was renamed to `validate_all_dict`, and `validate_all` was changed as described below) ([#1246](https://github.com/stac-utils/pystac/pull/1246))
@@ -835,7 +837,8 @@ use `Band.create`
835837

836838
Initial release.
837839

838-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.0..main>
840+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.1..main>
841+
[v1.10.1]: <https://github.com/stac-utils/pystac/compare/v1.10.0..v1.10.1>
839842
[v1.10.0]: <https://github.com/stac-utils/pystac/compare/v1.9.0..v1.10.0>
840843
[v1.9.0]: <https://github.com/stac-utils/pystac/compare/v1.8.4..v1.9.0>
841844
[v1.8.4]: <https://github.com/stac-utils/pystac/compare/v1.8.3..v1.8.4>

‎pystac/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import os
22
from typing import Optional
33

4-
__version__ = "1.10.0"
4+
__version__ = "1.10.1"
55
"""Library version"""
66

77

0 commit comments

Comments
 (0)