Skip to content

Commit 8a31c19

Browse files
Merge pull request #55 from sat-utils/develop
publish 0.3.2
2 parents 5f29039 + a856598 commit 8a31c19

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [v0.3.2] - 2020-01-022
10+
11+
### Changed
12+
- sat-stac now compatible with Python3 versions < 3.6 ()
13+
- Updated README to indicate compatability with STAC 0.9
14+
15+
### Removed
16+
- Removed lone f-string to allow compatability with Python3 < 3.6
17+
918
## [v0.3.1] - 2019-12-06
1019

1120
### Fixed
@@ -65,6 +74,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6574
Initial Release
6675

6776
[Unreleased]: https://github.com/sat-utils/sat-stac/compare/master...develop
77+
[v0.3.2]: https://github.com/sat-utils/sat-stac/compare/0.3.1...v0.3.2
78+
[v0.3.1]: https://github.com/sat-utils/sat-stac/compare/0.3.0...v0.3.1
6879
[v0.3.0]: https://github.com/sat-utils/sat-stac/compare/0.2.0...v0.3.0
6980
[v0.2.0]: https://github.com/sat-utils/sat-stac/compare/0.1.3...v0.2.0
7081
[v0.1.3]: https://github.com/sat-utils/sat-stac/compare/0.1.2...v0.1.3

satstac/itemcollection.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def open(cls, filename):
6363
@classmethod
6464
def load(cls, *args, **kwargs):
6565
""" Load an Items class from a GeoJSON FeatureCollection """
66-
logger.warning(f"ItemCollection.load() is deprecated, use ItemCollection.open()")
66+
logger.warning("ItemCollection.load() is deprecated, use ItemCollection.open()")
6767
return cls.open(*args, **kwargs)
6868

6969
def __len__(self):
@@ -177,4 +177,4 @@ def download(self, *args, **kwargs):
177177
fname = i.download(*args, **kwargs)
178178
if fname is not None:
179179
dls.append(fname)
180-
return dls
180+
return dls

satstac/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.3.1'
1+
__version__ = '0.3.2'

0 commit comments

Comments
 (0)