Skip to content

Commit

Permalink
Bump version to 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
agschwender committed Jul 27, 2018
1 parent 7b65485 commit 3247cf2
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 @@ -57,3 +57,4 @@
* 1.3.0: Increased Pillow to 4.1.0 and Tornado to 4.5.1
* 1.3.1: Fix pilbox.image CLI for python 3.0
* 1.3.2: Fix GIF P-mode to JPEG conversion
* 1.3.3: Increase Pillow version to 5.2.0 and Tornado version to 5.1.0
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -654,3 +654,4 @@ Changelog
- 1.3.0: Increased Pillow to 2.9.0 and Tornado to 4.5.1
- 1.3.1: Fix pilbox.image CLI for python 3.0
- 1.3.2: Fix GIF P-mode to JPEG conversion
- 1.3.3: Increase Pillow version to 5.2.0 and Tornado version to 5.1.0
5 changes: 3 additions & 2 deletions pilbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,13 +80,14 @@
* 1.3.0: Increased Pillow to 2.9.0 and Tornado to 4.5.1
* 1.3.1: Fix pilbox.image CLI for python 3.0
* 1.3.2: Fix GIF P-mode to JPEG conversion
* 1.3.3: Increase Pillow version to 5.2.0 and Tornado version to 5.1.0
"""

# human-readable version number
version = "1.3.2"
version = "1.3.3"

# 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 = (1, 3, 2, 0)
version_info = (1, 3, 3, 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='1.3.2',
version='1.3.3',
description='Pilbox is an image processing application server built on the Tornado web framework using the Pillow Imaging Library',
long_description=readme,
classifiers=[
Expand Down

0 comments on commit 3247cf2

Please sign in to comment.