diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d3354b..ce70dd63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [Version 1.6.0] - 2023-09-07 + +- Adjusted to use `eo-learn 1.5.0` + - `compression` parameters were removed since they are redundant + - Removed interpolation from `eogrow.pipelines.features`. + - `LinearFunctionTask` moved to `eogrow.tasks.common` from `eo-learn` + - many adjustments due to parser changes +- In pipeline configs dictionary keys can now also contain variables. +- Default resizing backend changed to cv2 (to comply with changes in eo-learn). +- Merging timestamps of samples is no longer an option in the sample-merging pipeline. + + ## [Version 1.5.2] - 2023-08-16 - Pipelines using a Ray cluster now add the cluster configuration file to the logs folder. @@ -7,6 +19,7 @@ - Switched from `flake8` and `isort` to `ruff`. - Various minor improvements. + ## [Version 1.5.1] - 2023-05-03 - Fix bug in `LoggingManager.Schema` where `Tuple[str]` was used instead of `Tuple[str, ...]` for certain fields, preventing parsing of correct configurations. diff --git a/eogrow/__init__.py b/eogrow/__init__.py index 57f05692..4e8b8d37 100644 --- a/eogrow/__init__.py +++ b/eogrow/__init__.py @@ -1,3 +1,3 @@ """The main module of the eo-grow package.""" -__version__ = "1.5.2" +__version__ = "1.6.0"