Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
pcraciunoiu committed Jan 17, 2020
1 parent 56ba5d6 commit db79a94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion django_ses/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
default_app_config = 'django_ses.apps.DjangoSESConfig'

# When changing this, remember to change it in setup.py
VERSION = (0, "8", 13)
VERSION = (0, "8", 14)
__version__ = '.'.join([str(x) for x in VERSION])
__author__ = 'Harry Marr'
__all__ = ('SESBackend',)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def find_package_data(where=".", package="", exclude=standard_exclude,

setup(
name='django-ses',
version='0.8.13', # When changing this, remember to change it in __init__.py
version='0.8.14', # When changing this, remember to change it in __init__.py
packages=find_packages(exclude=['example', 'tests']),
package_data=package_data,
author='Harry Marr',
Expand Down

0 comments on commit db79a94

Please sign in to comment.