diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ba6f5d..0906b48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v0.3.2] - 2020-01-022 + +### Changed +- sat-stac now compatible with Python3 versions < 3.6 () +- Updated README to indicate compatability with STAC 0.9 + +### Removed +- Removed lone f-string to allow compatability with Python3 < 3.6 + ## [v0.3.1] - 2019-12-06 ### Fixed @@ -65,6 +74,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. Initial Release [Unreleased]: https://github.com/sat-utils/sat-stac/compare/master...develop +[v0.3.2]: https://github.com/sat-utils/sat-stac/compare/0.3.1...v0.3.2 +[v0.3.1]: https://github.com/sat-utils/sat-stac/compare/0.3.0...v0.3.1 [v0.3.0]: https://github.com/sat-utils/sat-stac/compare/0.2.0...v0.3.0 [v0.2.0]: https://github.com/sat-utils/sat-stac/compare/0.1.3...v0.2.0 [v0.1.3]: https://github.com/sat-utils/sat-stac/compare/0.1.2...v0.1.3 diff --git a/satstac/itemcollection.py b/satstac/itemcollection.py index 19e7573..859d927 100644 --- a/satstac/itemcollection.py +++ b/satstac/itemcollection.py @@ -63,7 +63,7 @@ def open(cls, filename): @classmethod def load(cls, *args, **kwargs): """ Load an Items class from a GeoJSON FeatureCollection """ - logger.warning(f"ItemCollection.load() is deprecated, use ItemCollection.open()") + logger.warning("ItemCollection.load() is deprecated, use ItemCollection.open()") return cls.open(*args, **kwargs) def __len__(self): @@ -177,4 +177,4 @@ def download(self, *args, **kwargs): fname = i.download(*args, **kwargs) if fname is not None: dls.append(fname) - return dls \ No newline at end of file + return dls diff --git a/satstac/version.py b/satstac/version.py index e1424ed..73e3bb4 100644 --- a/satstac/version.py +++ b/satstac/version.py @@ -1 +1 @@ -__version__ = '0.3.1' +__version__ = '0.3.2'