Skip to content

Commit 096d51c

Browse files
committed
version 0.9.2
1 parent 2747ef2 commit 096d51c

File tree

6 files changed

+19
-9
lines changed

6 files changed

+19
-9
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## [Version 0.9.2] - 2021-05-21
2+
- Minor fixes and improvements:
3+
* `SaveTask` and `LoadTask` don't automatically store a filesystem object anymore,
4+
* fix in `ImportFromTiff` about file extensions, contributed by @rpitonak,
5+
* fix in `SentinelHubInputTask` about data collection bands handling,
6+
* fix in `GeoDBVectorImportTask`,
7+
* `NormalizedDifferenceIndexTask` doesn't show division warnings anymore,
8+
* improvement in `PointSamplingTask`
9+
* improvements in LULC documentation notebook.
10+
111
## [Version 0.9.1] - 2021-04-23
212
- Added new tasks `VectorImportTask`, `GeopediaVectorImportTask`, and `GeoDBVectorImportTask` to `eo-learn-io`.
313
- Code improvements in LULC classification documentation notebook.

core/eolearn/core/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
from .utilities import deep_eq, negate_mask, constant_pad, get_common_timestamps, bgr_to_rgb, FeatureParser
1919

2020

21-
__version__ = '0.9.1'
21+
__version__ = '0.9.2'

features/eolearn/features/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from .doubly_logistic_approximation import DoublyLogisticApproximationTask
2121

2222

23-
__version__ = '0.9.0'
23+
__version__ = '0.9.2'

geometry/eolearn/geometry/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .superpixel import SuperpixelSegmentation, FelzenszwalbSegmentation, SlicSegmentation, MarkSegmentationBoundaries
88
from .transformations import VectorToRaster, RasterToVector
99

10-
__version__ = '0.9.0'
10+
__version__ = '0.9.2'

io/eolearn/io/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
from .sentinelhub_process import SentinelHubDemTask, SentinelHubEvalscriptTask, SentinelHubInputTask, \
99
SentinelHubSen2corTask, get_available_timestamps
1010

11-
__version__ = '0.9.1'
11+
__version__ = '0.9.2'

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def parse_requirements(file):
2222
setup(
2323
name='eo-learn',
2424
python_requires='>=3.6',
25-
version='0.9.1',
25+
version='0.9.2',
2626
description='Earth observation processing framework for machine learning in Python',
2727
long_description=get_long_description(),
2828
long_description_content_type='text/markdown',
@@ -33,11 +33,11 @@ def parse_requirements(file):
3333
packages=[],
3434
include_package_data=True,
3535
install_requires=[
36-
'eo-learn-core>=0.9.1',
36+
'eo-learn-core>=0.9.2',
3737
'eo-learn-coregistration>=0.9.0',
38-
'eo-learn-features>=0.9.0',
39-
'eo-learn-geometry>=0.9.0',
40-
'eo-learn-io>=0.9.1',
38+
'eo-learn-features>=0.9.2',
39+
'eo-learn-geometry>=0.9.2',
40+
'eo-learn-io>=0.9.2',
4141
'eo-learn-mask>=0.9.0',
4242
'eo-learn-ml-tools>=0.9.0',
4343
'eo-learn-visualization>=0.9.0'

0 commit comments

Comments
 (0)