Skip to content

Commit

Permalink
Increased version to 0.9.18
Browse files Browse the repository at this point in the history
  • Loading branch information
agschwender committed May 14, 2014
1 parent 8333aca commit 095b4ea
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@
* 0.9.15: Added implicit base url
* 0.9.16: Added validate cert to configuration
* 0.9.17: Added support for GIF format
* 0.9.18: Fix for travis builds on python 2.6 and 3.3
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,7 @@ Changelog
- 0.9.15: Added implicit base url to configuration
- 0.9.16: Added validate cert to configuration
- 0.9.17: Added support for GIF format
- 0.9.18: Fix for travis builds on python 2.6 and 3.3

TODO
====
Expand Down
5 changes: 3 additions & 2 deletions pilbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,14 @@
* 0.9.15: Added implicit base url
* 0.9.16: Added validate cert to configuration
* 0.9.17: Added support for GIF format
* 0.9.18: Fix for travis builds on python 2.6 and 3.3
"""

# human-readable version number
version = "0.9.17"
version = "0.9.18"

# The first three numbers are the components of the version number.
# The fourth is zero for an official release, positive for a development
# branch, or negative for a release candidate or beta (after the base version
# number has been incremented)
version_info = (0, 9, 17, 0)
version_info = (0, 9, 18, 0)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def run(self):


setup(name='pilbox',
version='0.9.17',
version='0.9.18',
description='Pilbox is an image resizing application server built on the Tornado web framework using the Pillow Imaging Library',
long_description=readme,
classifiers=[
Expand Down

0 comments on commit 095b4ea

Please sign in to comment.