Skip to content

Commit

Permalink
Bump version and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
sloria committed Jan 9, 2017
1 parent 1737a10 commit c4f116c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
---------

1.5.2 (unreleased)
1.5.2 (2017-01-08)
******************

Bug fixes:
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def read(fname):
packages=find_packages(exclude=("test*", 'examples')),
package_dir={'webargs': 'webargs'},
install_requires=REQUIREMENTS,
license=read("LICENSE"),
license='MIT',
zip_safe=False,
keywords=('webargs', 'http', 'flask', 'django', 'bottle', 'tornado', 'aiohttp',
'webapp2', 'request', 'arguments', 'parameters', 'rest', 'api', 'marshmallow'),
Expand All @@ -58,6 +58,7 @@ def read(fname):
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
Expand Down
2 changes: 1 addition & 1 deletion webargs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from webargs.core import argmap2schema, WebargsError, ValidationError
from webargs import fields

__version__ = '1.5.2.dev0'
__version__ = '1.5.2'
__author__ = 'Steven Loria'
__license__ = 'MIT'

Expand Down

0 comments on commit c4f116c

Please sign in to comment.