diff --git a/.bumpversion.cfg b/.bumpversion.cfg index fa7ed61..5e51fb7 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.4 +current_version = 0.1.0 commit = true tag = true tag_name = {new_version} diff --git a/docs/conf.py b/docs/conf.py index 7f1b2eb..2428f0d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -56,7 +56,7 @@ # |version| and |release|, also used in various other places throughout the # built documents. # -version = '0.0.4' +version = '0.1.0' release = version # The language for content autogenerated by Sphinx. Refer to documentation @@ -139,7 +139,7 @@ # The name for this set of Sphinx documents. # " v documentation" by default. # -# html_title = u'django-session-timeout v0.0.4' +# html_title = u'django-session-timeout v0.1.0' # A shorter title for the navigation bar. Default is the same as html_title. # diff --git a/setup.py b/setup.py index 9f611e4..ac456b4 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ setup( name="django-session-timeout", - version="0.0.4", + version="0.1.0", description="Middleware to expire sessions after specific amount of time", long_description=long_description, long_description_content_type="text/markdown", diff --git a/src/django_session_timeout/__init__.py b/src/django_session_timeout/__init__.py index 81f0fde..3dc1f76 100644 --- a/src/django_session_timeout/__init__.py +++ b/src/django_session_timeout/__init__.py @@ -1 +1 @@ -__version__ = "0.0.4" +__version__ = "0.1.0"