Skip to content

Commit

Permalink
Update version to 0.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jpellerin committed Mar 5, 2010
1 parent 64ec7ef commit 87e4061
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
7 changes: 4 additions & 3 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
0.11.2
0.11.3
------

nose version 0.11.2 fixes bugs in nose 0.11.1 and finally allows Windows
users the enjoy the fruits of multiprocess testing.
nose version 0.11.3 fixes a method resolution order bug in 0.11.2 that
prevented plugin overriding from working correctly with the
DefaultPluginManager.
4 changes: 2 additions & 2 deletions doc/.templates/indexsidebar.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<h3><a href="/mrl/projects/nose/nose-{{ release }}.tar.gz">Download</a></h3>
<ul>
<li><a href="/mrl/projects/nose/nose-{{ release }}.tar.gz">
Current version: {{ version }}</a>
Current version: {{ release }}</a>
</li>
</ul>

<h3>Install</h3>
<ul>
<li>This release:<br/>
<tt>easy_install nose=={{ version }}</tt></li>
<tt>easy_install nose=={{ release }}</tt></li>
<li>Development (unstable):<br/>
<tt>easy_install nose==dev</tt>
</li>
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
# The short X.Y version.
version = '0.11'
# The full version, including alpha/beta/rc tags.
release = '0.11.2'
release = '0.11.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion nose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from nose.tools import with_setup

__author__ = 'Jason Pellerin'
__versioninfo__ = (0, 11, 2)
__versioninfo__ = (0, 11, 3)
__version__ = '.'.join(map(str, __versioninfo__))

__all__ = [
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

VERSION = '0.11.2'
VERSION = '0.11.3'
py_vers_tag = '-%s.%s' % sys.version_info[:2]

try:
Expand Down

0 comments on commit 87e4061

Please sign in to comment.