Skip to content

Commit

Permalink
Bump version to 1.2.3
Browse files Browse the repository at this point in the history
Update README to reflect new user_agent option
  • Loading branch information
agschwender committed Apr 20, 2017
1 parent 34d16c4 commit 4d608d2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,4 @@
- *Backwards incompatible*: default background property changed to `0fff`. To restore previous behavior, set background in config to `ffff`.
* 1.2.1: Added max operations config property
* 1.2.2: Added max resize width and height config properties
* 1.2.3: Added user_agent option
7 changes: 4 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,8 @@ To see a list of all available options, run
--quality default jpeg quality, 1-99 or keep
--retain default adaptive retain percent, 1-99
--timeout timeout of requests in seconds (default 10)
--validate_cert validate certificates (default True)
--user_agent user agent
--validate_cert validate certificates (default True)


Calling
Expand Down Expand Up @@ -628,5 +628,6 @@ Changelog
``0fff``. To restore previous behavior, set background in config
to ``ffff``.

- 1.2.1: Added max operations config property
- 1.2.2: Added max resize width and height config properties
- 1.2.1: Added max operations config property
- 1.2.2: Added max resize width and height config properties
- 1.2.3: Added user_agent option
5 changes: 3 additions & 2 deletions pilbox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,14 @@
to `ffff`.
* 1.2.1: Added max operations config property
* 1.2.2: Added max resize width and height config properties
* 1.2.3: Added user_agent option
"""

# human-readable version number
version = "1.2.2"
version = "1.2.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, 2, 2, 0)
version_info = (1, 2, 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.2.2',
version='1.2.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 4d608d2

Please sign in to comment.