diff --git a/CHANGES.rst b/CHANGES.rst index f4d03e01b9..3d064bcb25 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -8,6 +8,36 @@ https://hyperspy.readthedocs.io/en/latest/user_guide/changes.html .. towncrier release notes start +Hyperspy 1.6.4 (2021-07-08) +=========================== + +Bug Fixes +--------- + +- Fix parsing EELS aperture label with unexpected value, for example 'Imaging' instead of '5 mm' (`#2772 `_) +- Lazy datasets can now be saved out as blockfiles (blo) (`#2774 `_) +- ComplexSignals can now be rebinned without error (`#2789 `_) +- Method `estimate_parameters` in `Polynomial` component now supports order + greater than 10 (`#2790 `_) +- Update minimal requirement of dependency importlib_metadata from + >= 1.6.0 to >= 3.6 (`#2793 `_) + + +Enhancements +------------ + +- When saving a dataset with a dtype other than + `uint8 `_ to a blockfile + (blo) it is now possible to provide the argument ``intensity_scaling`` to map + the intensity values to the reduced range (`#2774 `_) + + +Maintenance +----------- + +- Fix image comparison failure with numpy 1.21.0 (`#2774 `_) + + Hyperspy 1.6.3 (2021-06-10) =========================== diff --git a/hyperspy/Release.py b/hyperspy/Release.py index ea068f213d..762d330741 100644 --- a/hyperspy/Release.py +++ b/hyperspy/Release.py @@ -25,7 +25,7 @@ # When running setup.py the ".dev" string will be replaced (if possible) # by the output of "git describe" if git is available or the git # hash if .git is present. -version = "1.6.4.dev0" +version = "1.6.5.dev0" description = "Multidimensional data analysis toolbox" license = 'GPL v3' diff --git a/upcoming_changes/2772.bugfix.rst b/upcoming_changes/2772.bugfix.rst deleted file mode 100644 index 782e717d3c..0000000000 --- a/upcoming_changes/2772.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix parsing EELS aperture label with unexpected value, for example 'Imaging' instead of '5 mm' diff --git a/upcoming_changes/2774.bugfix.rst b/upcoming_changes/2774.bugfix.rst deleted file mode 100644 index 16e84bb251..0000000000 --- a/upcoming_changes/2774.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Lazy datasets can now be saved out as blockfiles (blo). diff --git a/upcoming_changes/2774.enhancements.rst b/upcoming_changes/2774.enhancements.rst deleted file mode 100644 index 5d0095510e..0000000000 --- a/upcoming_changes/2774.enhancements.rst +++ /dev/null @@ -1,4 +0,0 @@ -When saving a dataset with a dtype other than -`uint8 `_ to a blockfile -(blo) it is now possible to provide the argument ``intensity_scaling`` to map -the intensity values to the reduced range. diff --git a/upcoming_changes/2774.maintenance.rst b/upcoming_changes/2774.maintenance.rst deleted file mode 100644 index 2cf1ae6b1c..0000000000 --- a/upcoming_changes/2774.maintenance.rst +++ /dev/null @@ -1 +0,0 @@ -Fix image comparison failure with numpy 1.21.0 diff --git a/upcoming_changes/2789.bugfix.rst b/upcoming_changes/2789.bugfix.rst deleted file mode 100644 index 465c461874..0000000000 --- a/upcoming_changes/2789.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -ComplexSignals can now be rebinned without error diff --git a/upcoming_changes/2790.bugfix.rst b/upcoming_changes/2790.bugfix.rst deleted file mode 100644 index 3d72b9cb5a..0000000000 --- a/upcoming_changes/2790.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Method `estimate_parameters` in `Polynomial` component now supports order -greater than 10. diff --git a/upcoming_changes/2793.bugfix.rst b/upcoming_changes/2793.bugfix.rst deleted file mode 100644 index 371b0e70d1..0000000000 --- a/upcoming_changes/2793.bugfix.rst +++ /dev/null @@ -1,2 +0,0 @@ -Update minimal requirement of dependency importlib_metadata from ->= 1.6.0 to >= 3.6.