Skip to content

DOC: Update authors, changelog #515

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 6 commits into from
Mar 7, 2017
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
5 changes: 5 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,15 @@ Basile Pinsard <basile.pinsard@gmail.com> bpinsard <basile.pinsard@gmail.com>
Basile Pinsard <basile.pinsard@gmail.com> bpinsard <bpinsard@imed.jussieu.fr>
Nguyen, Ly <nguyen60@seattleu.edu> lxn2 <lxn2@uw.edu>
Ben Cipollini <ben.cipollini@gmail.com> Ben Cipollini <bcipolli@ucsd.edu>
Chris Markiewicz <effigies@gmail.com> Christopher J. Markiewicz <markiewicz@stanford.edu>
Chris Markiewicz <effigies@gmail.com> Christopher J. Markiewicz <effigies@bu.edu>
Chris Markiewicz <effigies@gmail.com> Christopher J. Markiewicz <effigies@gmail.com>
Chris Markiewicz <effigies@gmail.com> Chris Johnson <effigies@bu.edu>
Jaakko Leppäkangas <jaeilepp@student.jyu.fi> jaeilepp <jaeilepp@student.jyu.fi>
Ariel Rokem <arokem@gmail.com> arokem <arokem@gmail.com>
Oliver P. Hinds <ohinds@gmail.com> ohinds <ohinds@gmail.com>
Marc-Alexandre Côté <marc.cote.19@gmail.com> Marc-Alexandre Cote <marc.cote.19@gmail.com>
Satrajit Ghosh <satra@mit.edu> Satrajit Ghosh <satrajit.ghosh@gmail.com>
Jasper J.F. van den Bosch <japsai@gmail.com> Jasper <japsai@gmail.com>
Gregory R. Lee <grlee77@gmail.com> Gregory R. Lee <gregory.lee@cchmc.org>
Demian Wassermann <demian@bwh.harvard.edu> Demian Wassermann <demian.wassermann@inria.fr>
37 changes: 37 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,43 @@ Gerhard (SG) and Eric Larson (EL).

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

Upcoming Release
================

New features
------------

* CIFTI support (pr/249) (Satra Ghosh, Michiel Cottaar, BC, CM, Demian
Wassermann, MB)

Enhancements
------------

* Support for alternative header field name variants in .PAR files
(pr/507) (Gregory R. Lee)
* Various enhancements to streamlines API by MC: support for reading TRK
version 1 (pr/512); concatenation of tractograms using `+`/`+=` operators
(pr/495); function to concatenate multiple ArraySequence objects (pr/494)
* Support for numpy 1.12 (pr/500, pr/502) (MC, MB)
* Allow dtype specifiers as fileslice input (pr/485) (MB)

Bug fixes
---------

* Miscellaneous MINC reader fixes (pr/493) (Robert D. Vincent, reviewed by CM,
MB)

Maintenance
-----------

* Documentation update (pr/514) (Ivan Gonzalez)
* Update testing to use pre-release builds of dependencies (pr/509) (MB)
* Better warnings when nibabel not on path (pr/503) (MB)

API changes and deprecations
----------------------------


2.1 (Monday 22 August 2016)
===========================

Expand Down
4 changes: 4 additions & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ contributed code and discussion (in rough order of appearance):
* `Ariel Rokem`_
* Eleftherios Garyfallidis
* Jaakko Leppäkangas
* Syam Gadde
* Robert D. Vincent
* Ivan Gonzalez
* Demian Wassermann

License reprise
===============
Expand Down
4 changes: 2 additions & 2 deletions tools/refresh_readme.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
from __future__ import print_function

import os
import runpy

readme_lines = []
with open('README.rst', 'rt') as fobj:
Expand All @@ -16,8 +17,7 @@
else:
raise ValueError('Expected comment not found')

rel = {}
execfile(os.path.join('nibabel', 'info.py'), rel)
rel = runpy.run_path(os.path.join('nibabel', 'info.py'))

readme = ''.join(readme_lines) + '\n' + rel['LONG_DESCRIPTION']

Expand Down