diff --git a/.bumpversion.cfg b/.bumpversion.cfg index cb0ce51..0006d0f 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.5.0 +current_version = 0.5.1 commit = True tag = True diff --git a/rest_framework_sso/__init__.py b/rest_framework_sso/__init__.py index 0b6eeda..0e328b0 100644 --- a/rest_framework_sso/__init__.py +++ b/rest_framework_sso/__init__.py @@ -2,7 +2,7 @@ from __future__ import absolute_import, unicode_literals __title__ = "djangorestframework-sso" -__version__ = "0.5.0" +__version__ = "0.5.1" __author__ = "Lenno Nagel" __license__ = "MIT" __copyright__ = "Copyright 2016 Namespace OÜ" diff --git a/setup.py b/setup.py index 44cc517..dd9a03b 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ setup( name="djangorestframework-sso", - version="0.5.0", + version="0.5.1", packages=find_packages(exclude=["tests"]), include_package_data=True, license="MIT License",