Skip to content

Commit

Permalink
Merge pull request #55 from sat-utils/develop
Browse files Browse the repository at this point in the history
publish 0.3.2
  • Loading branch information
matthewhanson committed Jan 23, 2020
2 parents 5f29039 + a856598 commit 8a31c19
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions satstac/itemcollection.py
Expand Up @@ -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):
Expand Down Expand Up @@ -177,4 +177,4 @@ def download(self, *args, **kwargs):
fname = i.download(*args, **kwargs)
if fname is not None:
dls.append(fname)
return dls
return dls
2 changes: 1 addition & 1 deletion satstac/version.py
@@ -1 +1 @@
__version__ = '0.3.1'
__version__ = '0.3.2'

0 comments on commit 8a31c19

Please sign in to comment.