Skip to content

Commit

Permalink
Release v1.10.1 (#1338)
Browse files Browse the repository at this point in the history
* fix: don't transform_href in __getstate__ (#1337)

* release: v1.10.1
  • Loading branch information
gadomski committed May 3, 2024
1 parent 9467ac1 commit a4ea239
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
14 changes: 10 additions & 4 deletions CHANGELOG.md
Expand Up @@ -2,10 +2,15 @@

## [Unreleased]

### Changed

- 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))

## [v1.10.1] - 2024-05-03

### Fixed

- Don't transform hrefs in `Item.__getstate__` ([#1337](https://github.com/stac-utils/pystac/pull/1337))
- 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))

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

Expand All @@ -19,7 +24,7 @@

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

### Fixed

Expand All @@ -29,7 +34,7 @@

### Added

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

Initial release.

[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.0..main>
[Unreleased]: <https://github.com/stac-utils/pystac/compare/v1.10.1..main>
[v1.10.1]: <https://github.com/stac-utils/pystac/compare/v1.10.0..v1.10.1>
[v1.10.0]: <https://github.com/stac-utils/pystac/compare/v1.9.0..v1.10.0>
[v1.9.0]: <https://github.com/stac-utils/pystac/compare/v1.8.4..v1.9.0>
[v1.8.4]: <https://github.com/stac-utils/pystac/compare/v1.8.3..v1.8.4>
Expand Down
2 changes: 1 addition & 1 deletion pystac/version.py
@@ -1,7 +1,7 @@
import os
from typing import Optional

__version__ = "1.10.0"
__version__ = "1.10.1"
"""Library version"""


Expand Down

0 comments on commit a4ea239

Please sign in to comment.