Skip to content

Commit fb6fa98

Browse files
AleksMatzigaLuksic
andauthored
version 1.1.1 (#425)
* version 1.1.1 * Update CHANGELOG.md Co-authored-by: Žiga Lukšič <[email protected]> Co-authored-by: Žiga Lukšič <[email protected]>
1 parent 26d63eb commit fb6fa98

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [Version 1.1.1] - 2022-06-14
2+
3+
- Fixed a bug in `eolearn.io.ImportFromTiffTask` where a bounding box from the image wasn't added to the EOPatch.
4+
- Increased minimal version of `Pillow` dependency in `eolearn.features`.
5+
6+
17
## [Version 1.1.0] - 2022-06-13
28

39
- Large improvements of parallelization in EOExecutor. Introduced the `eolearn.core.utils.parallelize` module, featuring tools for different parallelization modes.

features/eolearn/features/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
AddSpatioTemporalFeaturesTask,
3939
)
4040

41-
__version__ = "1.1.0"
41+
__version__ = "1.1.1"

io/eolearn/io/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
get_available_timestamps,
1414
)
1515

16-
__version__ = "1.1.0"
16+
__version__ = "1.1.1"

setup.py

+3-3
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.7",
25-
version="1.1.0",
25+
version="1.1.1",
2626
description="Earth observation processing framework for machine learning in Python",
2727
long_description=get_long_description(),
2828
long_description_content_type="text/markdown",
@@ -35,9 +35,9 @@ def parse_requirements(file):
3535
install_requires=[
3636
"eo-learn-core==1.1.0",
3737
"eo-learn-coregistration==1.1.0",
38-
"eo-learn-features==1.1.0",
38+
"eo-learn-features==1.1.1",
3939
"eo-learn-geometry==1.1.0",
40-
"eo-learn-io==1.1.0",
40+
"eo-learn-io==1.1.1",
4141
"eo-learn-mask==1.1.0",
4242
"eo-learn-ml-tools==1.1.0",
4343
"eo-learn-visualization==1.1.0",

0 commit comments

Comments
 (0)