Skip to content

Commit c21b082

Browse files
committed
-
1 parent 6d97509 commit c21b082

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 @@ Please keep in mind that Python Toolbox is still in alpha stage, and that backwa
3434

3535
## Present ##
3636

37-
Python Toolbox is at version 0.8.0, which is an alpha release. It's being used in production every day, but backward compatibility isn't guaranteed yet.
37+
Python Toolbox is at version 0.9.0, which is an alpha release. 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.8.0'
48+
version = '0.9.0'
4949
# The full version, including alpha/beta/rc tags.
50-
release = '0.8.0'
50+
release = '0.9.0'
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
@@ -122,7 +122,7 @@ def get_packages():
122122
Present
123123
-------
124124
125-
Python Toolbox is at version 0.8.0, which is an alpha release. It's being used
125+
Python Toolbox is at version 0.9.0, which is an alpha release. It's being used
126126
in production every day, but backward compatibility isn't guaranteed yet.
127127
128128
Next tasks
@@ -163,7 +163,7 @@ def get_packages():
163163

164164
setuptools.setup(
165165
name='python_toolbox',
166-
version='0.8.0',
166+
version='0.9.0',
167167
test_suite='nose.collector',
168168
install_requires=install_requires,
169169
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, 8, 0)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0. 9, 0)
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, 8, 0)
19+
__version_info__ = python_toolbox.version_info.VersionInfo(0, 9, 0)
2020
__version__ = __version_info__.version_text
2121

0 commit comments

Comments
 (0)