Skip to content

Commit a4ea239

Browse files
authored
Release v1.10.1 (#1338)
* fix: don't transform_href in __getstate__ (#1337) * release: v1.10.1
1 parent 9467ac1 commit a4ea239

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,15 @@
22

33
## [Unreleased]
44

5+
### Changed
6+
7+
- Allow object ID as input for getting APILayoutStrategy hrefs and add `items`, `collections`, `search`, `conformance`, `service_desc` and `service_doc` href methods. ([#1335](https://github.com/stac-utils/pystac/pull/1335))
8+
9+
## [v1.10.1] - 2024-05-03
10+
511
### Fixed
612

713
- Don't transform hrefs in `Item.__getstate__` ([#1337](https://github.com/stac-utils/pystac/pull/1337))
8-
- Allow object ID as input for getting APILayoutStrategy hrefs and add `items`, `collections`, `search`, `conformance`, `service_desc` and `service_doc` href methods. ([#1335](https://github.com/stac-utils/pystac/pull/1335))
914

1015
## [v1.10.0] - 2024-03-28
1116

@@ -19,7 +24,7 @@
1924

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

2429
### Fixed
2530

@@ -29,7 +34,7 @@
2934

3035
### Added
3136

32-
- Simpler extension interface ([#1243](https://github.com/stac-utils/pystac/pull/1243)])
37+
- Simpler extension interface ([#1243](https://github.com/stac-utils/pystac/pull/1243))
3338
- More permissive schema_uri matching to allow future versions of extension schemas ([#1231](https://github.com/stac-utils/pystac/pull/1231))
3439
- Better error messages from jsonschema validation ([#1233](https://github.com/stac-utils/pystac/pull/1233))
3540
- `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))
@@ -836,7 +841,8 @@ use `Band.create`
836841

837842
Initial release.
838843

839-
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.0..main>
844+
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.1..main>
845+
[v1.10.1]: <https://github.com/stac-utils/pystac/compare/v1.10.0..v1.10.1>
840846
[v1.10.0]: <https://github.com/stac-utils/pystac/compare/v1.9.0..v1.10.0>
841847
[v1.9.0]: <https://github.com/stac-utils/pystac/compare/v1.8.4..v1.9.0>
842848
[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)