Skip to content

REL: 2.5.0 #779

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ Mathias Goncalves <[email protected]> mathiasg <[email protected]>
Matthew Cieslak <[email protected]> Matt Cieslak <[email protected]>
Michael Hanke <[email protected]> <mhanke-guest@82381867-18eb-0310-98a2-9474e637aba2>
Michael Hanke <[email protected]> <[email protected]>
Michiel Cottaar <[email protected]> Michiel Cottaar <[email protected]>
Ly Nguyen <[email protected]> lxn2 <[email protected]>
Oliver P. Hinds <[email protected]> ohinds <[email protected]>
Paul McCarthy <[email protected]> Paul McCarthy <[email protected]>
Expand Down
6 changes: 6 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,9 @@
{
"name": "Fauber, Bennet"
},
{
"name": "Panfilov, Egor"
},
{
"affiliation": "McGill University",
"name": "Poline, Jean-Baptiste",
Expand Down Expand Up @@ -249,6 +252,9 @@
"name": "Gonzalez, Ivan",
"orcid": "0000-0002-6451-6909"
},
{
"name": "Palasubramaniam, Jath"
},
{
"name": "Lecher, Justin"
},
Expand Down
36 changes: 35 additions & 1 deletion Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,42 @@ Eric Larson (EL), Demian Wassermann, and Stephan Gerhard.

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

2.5.0 (To be decided)
=====================

Thanks for the test ECAT file and fix provided by Andrew Crabb.

Enhancements
------------
* Add SerializableImage class with to/from_bytes methods (pr/644) (CM,
reviewed by MB)
* Check CIFTI-2 data shape matches shape described by header (pr/774)
(Michiel Cottaar, reviewed by CM)

Bug fixes
---------
* Handle stricter numpy casting rules in tests (pr/768) (CM)
reviewed by PM)
* TRK header fields flipped in files written on big-endian systems
(pr/782) (CM, reviewed by YOH, MB)
* Load multiframe ECAT images with Python 3 (CM and Andrew Crabb)

Maintenance
-----------
* Fix CodeCov paths on Appveyor for more accurate coverage (pr/769) (CM)
* Move to setuptools and reduce use ``nisext`` functions (pr/764) (CM,
reviewed by YOH)
* Better handle test setup/teardown (pr/785) (CM, reviewed by YOH)

API changes and deprecations
----------------------------
* Effect threatened warnings and set some deprecation timelines (pr/755) (CM)
* Trackvis methods now default to v2 formats
* ``nibabel.trackvis`` scheduled for removal in nibabel 4.0
* ``nibabel.minc`` and ``nibabel.MincImage`` will be removed in nibabel 3.0

2.4.1 (Monday 27 May 2019)
============================
==========================

Contributions from Egor Pafilov, Jath Palasubramaniam, Richard Nemec, and
Dave Allured.
Expand Down
4 changes: 2 additions & 2 deletions nibabel/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
_version_major = 2
_version_minor = 5
_version_micro = 0
_version_extra = 'dev'
# _version_extra = ''
# _version_extra = 'dev'
_version_extra = ''

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