Skip to content

Commit 94db50f

Browse files
committed
rel: 1.0.0
1 parent 9f3bd59 commit 94db50f

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGES

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
Upcoming release (1.0.0)
1+
Upcoming release
2+
================
3+
4+
1.0.0 (January 24, 2018)
25
========================
36

47
* FIX: PBS plugin submissions (https://github.com/nipy/nipype/pull/2344)
@@ -22,6 +25,7 @@ Upcoming release (1.0.0)
2225
* STY: Cleanup of PEP8 violations (https://github.com/nipy/nipype/pull/2358)
2326
* STY: Cleanup of trailing spaces and adding of missing newlines at end of files (https://github.com/nipy/nipype/pull/2355)
2427
* STY: Apply yapf to codebase (https://github.com/nipy/nipype/pull/2371)
28+
* DOC: Updated guide for contributing (https://github.com/nipy/nipype/pull/2393)
2529

2630
0.14.0 (November 29, 2017)
2731
==========================

doc/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
# The short X.Y version.
8383
version = nipype.__version__
8484
# The full version, including alpha/beta/rc tags.
85-
release = "0.14.0"
85+
release = "1.0.0"
8686

8787
# The language for content autogenerated by Sphinx. Refer to documentation
8888
# for a list of supported languages.

doc/documentation.rst

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

12-
Previous versions: `0.13.1 <http://nipype.readthedocs.io/en/0.13.1/>`_ `0.12.1 <http://nipype.readthedocs.io/en/0.12.1/>`_
12+
Previous versions: `0.14.0 <http://nipype.readthedocs.io/en/v0.14.0/>`_ `0.13.1 <http://nipype.readthedocs.io/en/0.13.1/>`_
1313

1414

1515
.. container:: doc2

nipype/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
# full release. '.dev' as a version_extra string means this is a development
1212
# version
1313
# Remove -dev for release
14-
__version__ = '0.14.1-dev'
14+
__version__ = '1.0.0'
1515

1616

1717
def get_nipype_gitversion():

nipype/pipeline/plugins/pbs.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ def _is_pending(self, taskid):
5757

5858
stdout = result.runtime.stdout
5959
stderr = result.runtime.stderr
60-
errmsg = 'Unknown Job Id'
60+
errmsg = 'Unknown Job Id'
6161
success = 'Job has finished'
62-
if (success in stderr) or ('job_state = C' in stdout):
62+
if (success in stderr) or ('job_state = C' in stdout):
6363
return False
6464
else:
6565
return errmsg not in stderr

0 commit comments

Comments
 (0)