Skip to content

Commit 137cc74

Browse files
committed
Bump version to 0.9.4
1 parent 52f4f1c commit 137cc74

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Backward compatibility is currently *not* maintained. If you're using Python Too
3434

3535
## Present ##
3636

37-
Python Toolbox is at version 0.9.3. It's being used in production every day, but backward compatibility isn't guaranteed yet.
37+
Python Toolbox is at version 0.9.4. It's being used in production every day, but backward compatibility isn't guaranteed yet.
3838

3939
## Next tasks ##
4040

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
# built documents.
4646
#
4747
# The short X.Y version.
48-
version = '0.9.3'
48+
version = '0.9.4'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '0.9.3'
50+
release = '0.9.4'
5151

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

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def get_packages():
119119
Present
120120
-------
121121
122-
Python Toolbox is at version 0.9.3. It's being used in production every day,
122+
Python Toolbox is at version 0.9.4. It's being used in production every day,
123123
but backward compatibility isn't guaranteed yet.
124124
125125
Next tasks
@@ -160,7 +160,7 @@ def get_packages():
160160

161161
setuptools.setup(
162162
name='python_toolbox',
163-
version='0.9.3',
163+
version='0.9.4',
164164
test_suite='nose.collector',
165165
install_requires=install_requires,
166166
tests_require=['nose>=1.0.0',

source_py2/python_toolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
import python_toolbox.monkeypatch_copy_reg
1717
import python_toolbox.monkeypatch_envelopes
1818

19-
__version_info__ = python_toolbox.version_info.VersionInfo(0, 9, 3)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 9, 4)
2020
__version__ = __version_info__.version_text
2121

source_py3/python_toolbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@
1616
import python_toolbox.monkeypatch_copyreg
1717
import python_toolbox.monkeypatch_envelopes
1818

19-
__version_info__ = python_toolbox.version_info.VersionInfo(0, 9, 3)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 9, 4)
2020
__version__ = __version_info__.version_text
2121

0 commit comments

Comments
 (0)