Skip to content

Commit 0a5948a

Browse files
authored
Merge pull request #2399 from mgxd/rel/1.0.0
rel: 1.0.0
2 parents 9f3bd59 + 10694b8 commit 0a5948a

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

CHANGES

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
Upcoming release (1.0.0)
1+
1.0.0 (January 24, 2018)
22
========================
33

4+
###### [Full changelog](https://github.com/nipy/nipype/milestone/16?closed=1)
5+
46
* FIX: PBS plugin submissions (https://github.com/nipy/nipype/pull/2344)
57
* FIX: Graph plugins submissions (https://github.com/nipy/nipype/pull/2359)
68
* FIX: Logging error if % in interface command (https://github.com/nipy/nipype/pull/2364)
@@ -22,6 +24,7 @@ Upcoming release (1.0.0)
2224
* STY: Cleanup of PEP8 violations (https://github.com/nipy/nipype/pull/2358)
2325
* STY: Cleanup of trailing spaces and adding of missing newlines at end of files (https://github.com/nipy/nipype/pull/2355)
2426
* STY: Apply yapf to codebase (https://github.com/nipy/nipype/pull/2371)
27+
* DOC: Updated guide for contributing (https://github.com/nipy/nipype/pull/2393)
2528

2629
0.14.0 (November 29, 2017)
2730
==========================

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)