Skip to content

Commit 7fa0a9e

Browse files
authored
Merge pull request #779 from nipy/rel/2.5.0
REL: 2.5.0
2 parents 7ee4aa6 + 3994fa5 commit 7fa0a9e

File tree

4 files changed

+44
-3
lines changed

4 files changed

+44
-3
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ Mathias Goncalves <[email protected]> mathiasg <[email protected]>
4545
Matthew Cieslak <[email protected]> Matt Cieslak <[email protected]>
4646
Michael Hanke <[email protected]> <mhanke-guest@82381867-18eb-0310-98a2-9474e637aba2>
4747
48+
Michiel Cottaar <[email protected]> Michiel Cottaar <[email protected]>
4849
4950
Oliver P. Hinds <[email protected]> ohinds <[email protected]>
5051
Paul McCarthy <[email protected]> Paul McCarthy <[email protected]>

.zenodo.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,9 @@
197197
{
198198
"name": "Fauber, Bennet"
199199
},
200+
{
201+
"name": "Panfilov, Egor"
202+
},
200203
{
201204
"affiliation": "McGill University",
202205
"name": "Poline, Jean-Baptiste",
@@ -249,6 +252,9 @@
249252
"name": "Gonzalez, Ivan",
250253
"orcid": "0000-0002-6451-6909"
251254
},
255+
{
256+
"name": "Palasubramaniam, Jath"
257+
},
252258
{
253259
"name": "Lecher, Justin"
254260
},

Changelog

Lines changed: 35 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,42 @@ Eric Larson (EL), Demian Wassermann, and Stephan Gerhard.
2525

2626
References like "pr/298" refer to github pull request numbers.
2727

28+
2.5.0 (To be decided)
29+
=====================
30+
31+
Thanks for the test ECAT file and fix provided by Andrew Crabb.
32+
33+
Enhancements
34+
------------
35+
* Add SerializableImage class with to/from_bytes methods (pr/644) (CM,
36+
reviewed by MB)
37+
* Check CIFTI-2 data shape matches shape described by header (pr/774)
38+
(Michiel Cottaar, reviewed by CM)
39+
40+
Bug fixes
41+
---------
42+
* Handle stricter numpy casting rules in tests (pr/768) (CM)
43+
reviewed by PM)
44+
* TRK header fields flipped in files written on big-endian systems
45+
(pr/782) (CM, reviewed by YOH, MB)
46+
* Load multiframe ECAT images with Python 3 (CM and Andrew Crabb)
47+
48+
Maintenance
49+
-----------
50+
* Fix CodeCov paths on Appveyor for more accurate coverage (pr/769) (CM)
51+
* Move to setuptools and reduce use ``nisext`` functions (pr/764) (CM,
52+
reviewed by YOH)
53+
* Better handle test setup/teardown (pr/785) (CM, reviewed by YOH)
54+
55+
API changes and deprecations
56+
----------------------------
57+
* Effect threatened warnings and set some deprecation timelines (pr/755) (CM)
58+
* Trackvis methods now default to v2 formats
59+
* ``nibabel.trackvis`` scheduled for removal in nibabel 4.0
60+
* ``nibabel.minc`` and ``nibabel.MincImage`` will be removed in nibabel 3.0
61+
2862
2.4.1 (Monday 27 May 2019)
29-
============================
63+
==========================
3064

3165
Contributions from Egor Pafilov, Jath Palasubramaniam, Richard Nemec, and
3266
Dave Allured.

nibabel/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
_version_major = 2
2020
_version_minor = 5
2121
_version_micro = 0
22-
_version_extra = 'dev'
23-
# _version_extra = ''
22+
# _version_extra = 'dev'
23+
_version_extra = ''
2424

2525
# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
2626
__version__ = "%s.%s.%s%s" % (_version_major,

0 commit comments

Comments
 (0)