From 603d0f866d77aa80b58297aa954816a91813ba6e Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Wed, 7 Jun 2023 12:47:04 -0600 Subject: [PATCH 1/2] feat: include Modifiable at the top-level --- pystac_client/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pystac_client/__init__.py b/pystac_client/__init__.py index b04c5bae..68e2a0fb 100644 --- a/pystac_client/__init__.py +++ b/pystac_client/__init__.py @@ -3,9 +3,11 @@ "CollectionClient", "ConformanceClasses", "ItemSearch", + "Modifiable", "__version__", ] +from pystac_client._utils import Modifiable from pystac_client.client import Client from pystac_client.collection_client import CollectionClient from pystac_client.conformance import ConformanceClasses From adc64d67f6da7c21bebd882d6a16383c389fcdf6 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Wed, 7 Jun 2023 12:48:38 -0600 Subject: [PATCH 2/2] chore: update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70e38333..536679ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - PySTAC Client specific warnings [#480](https://github.com/stac-utils/pystac-client/pull/480) - Support for fetching and merging a selection of queryables [#511](https://github.com/stac-utils/pystac-client/pull/511) - Better error messages for the CLI [#531](https://github.com/stac-utils/pystac-client/pull/531) +- `Modifiable` to our public API [#534](https://github.com/stac-utils/pystac-client/pull/534) ### Changed