From fdce0b5167b7cbb2c08ae4a2bca6105f836d90c6 Mon Sep 17 00:00:00 2001 From: Colin Palmer Date: Thu, 22 Sep 2022 16:24:45 +0100 Subject: [PATCH] Update change log and bump version number --- CHANGELOG.txt | 12 ++++++++---- TODO.txt | 2 -- mrcfile/version.py | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 5d233dc..c3d1b31 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -1,12 +1,16 @@ Change log for mrcfile ====================== -Changes for next version ------------------------- +Version 1.4.3 (2022-09-22) +-------------------------- -* Add helper functions for working with header labels +* Add helper functions for working with header labels. +* Update header statistics calculation to use float32 instead of float64. This + is about twice as fast and uses less memory, but does make the calculations + slightly less accurate and will overflow (to 'inf') if the data array + contains very large values (larger than approximately 1e19). -Version 1.4.1 (2022-07-14) +Version 1.4.2 (2022-07-14) -------------------------- * Add support for passing file names as pathlib Path objects. diff --git a/TODO.txt b/TODO.txt index 2fe3d1b..d41c764 100644 --- a/TODO.txt +++ b/TODO.txt @@ -7,8 +7,6 @@ Planned or possible future developments for mrcfile.py * Fixing of invalid files -* Helper methods for handling header labels - * Handling of additional extended header types * Data axis swapping (would need clarity about whether header fields such as diff --git a/mrcfile/version.py b/mrcfile/version.py index a375ee0..4d75de3 100644 --- a/mrcfile/version.py +++ b/mrcfile/version.py @@ -5,4 +5,4 @@ no dependencies. """ -__version__ = '1.4.2' +__version__ = '1.4.3'