Skip to content

Commit e63e055

Browse files
committed
0.10.0 release
1 parent 44f7566 commit e63e055

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Next Release
1+
Release 0.10.0 (October 10, 2014)
22
============
33

44
* ENH: New miscelaneous interfaces: SplitROIs (mapper), MergeROIs (reducer)

doc/_templates/sidebar_versions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h3>{{ _('Versions') }}</h3>
1717
<td align="left">Release</td><td align="right">Devel</td>
1818
</tr>
1919
<tr>
20-
<td align="left">0.9.2</td><td align="right">1.0-dev</td>
20+
<td align="left">0.10.0</td><td align="right">1.0-dev</td>
2121
</tr>
2222
<tr>
2323
<td align="left"><a href="{{pathto('users/install')}}">Download</a></td>

doc/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757

5858
# General information about the project.
5959
project = u'nipype'
60-
copyright = u'2009-13, Neuroimaging in Python team'
60+
copyright = u'2009-14, Neuroimaging in Python team'
6161

6262
# The version info for the project you're documenting, acts as replacement for
6363
# |version| and |release|, also used in various other places throughout the

doc/documentation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation
99
:Release: |version|
1010
:Date: |today|
1111

12-
Previous versions: `0.8 <http://nipy.org/nipype/0.8>`_ `0.7 <http://nipy.org/nipype/0.7>`_
12+
Previous versions: `0.9.2 <http://nipy.org/nipype/0.9.2>`_ `0.8 <http://nipy.org/nipype/0.8>`_
1313

1414
.. container:: doc2
1515

doc/users/install.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ This page covers the necessary steps to install Nipype.
99
Download
1010
--------
1111

12-
Release 0.9.2: [`zip <https://github.com/nipy/nipype/archive/0.9.2.zip>`__ `tar.gz
13-
<https://github.com/nipy/nipype/archive/0.9.2.tar.gz>`__]
12+
Release 0.10.0: [`zip <https://github.com/nipy/nipype/archive/0.10.0.zip>`__ `tar.gz
13+
<https://github.com/nipy/nipype/archive/0.10.0.tar.gz>`__]
1414

1515
Development: [`zip <http://github.com/nipy/nipype/zipball/master>`__ `tar.gz
1616
<http://github.com/nipy/nipype/tarball/master>`__]

nipype/info.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
# full release. '.dev' as a _version_extra string means this is a development
99
# version
1010
_version_major = 0
11-
_version_minor = 9
12-
_version_micro = 2
11+
_version_minor = 10
12+
_version_micro = 0
1313
_version_extra = ''
1414

1515
def get_nipype_gitversion():

nipype/testing/data/pyscript.m

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
fprintf(1,'Executing %s at %s:\n',mfilename,datestr(now));
22
ver,
3-
try,a=1;
3+
try,
4+
if isempty(which('spm')),
5+
throw(MException('SPMCheck:NotFound','SPM not in matlab path'));
6+
end;
7+
spm_path = spm('dir');
8+
[name, version] = spm('ver');
9+
fprintf(1, 'NIPYPE path:%s|name:%s|release:%s', spm_path, name, version);
10+
exit;
11+
412
,catch ME,
513
fprintf(2,'MATLAB code threw an exception:\n');
614
fprintf(2,'%s\n',ME.message);

0 commit comments

Comments
 (0)