Skip to content

Commit 1a4d475

Browse files
committed
Update version to 1.4.0
1 parent 8524068 commit 1a4d475

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CHANGELOG.txt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
Change log for mrcfile
22
======================
33

4+
Version 1.4.0 (2022-07-02)
5+
--------------------------
6+
7+
* Change default MRC format version from 20140 to 20141 and update validation
8+
to allow files with both format numbers as valid.
9+
* Add mrcfile.read() and mrcfile.write() functions for quick one-off accesses
10+
to the MRC data array without needing to keep an MrcFile object open (thanks
11+
to Alister Burt).
12+
* Allow the extended header to be set when creating a file with
13+
mrcfile.new_mmap() (thanks to James Parkhurst).
14+
* Add file size checks to avoid allocating huge amounts of memory when opening
15+
corrupt or non-MRC files in permissive mode.
16+
* Update numpy and Python version compatibility to drop support for Python
17+
3.4 and 3.5 and numpy < 1.16, and add support for numpy 1.21 and 1.22.
18+
* Fix bug intepreting FEI extended headers on big-endian hardware.
19+
* Documentation updates.
20+
421
Version 1.3.0 (2021-02-18)
522
--------------------------
623

mrcfile/version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Copyright (c) 2016, Science and Technology Facilities Council
1+
# Copyright (c) 2022, Science and Technology Facilities Council
22
# This software is distributed under a BSD licence. See LICENSE.txt.
33

44
"""Stand-alone module for version number which can be imported or executed with
55
no dependencies.
66
"""
77

8-
__version__ = '1.3.0'
8+
__version__ = '1.4.0'

0 commit comments

Comments
 (0)