Skip to content

Commit

Permalink
Bump version: 0.4.0 → 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joke2k committed Nov 13, 2016
1 parent c900bb8 commit b1d9b6e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.0'
release = '0.4.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion environ/environ.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ImproperlyConfigured(Exception):
logger = logging.getLogger(__name__)


VERSION = '0.4.0'
VERSION = '0.4.1'
__author__ = 'joke2k'
__version__ = tuple(VERSION.split('.'))

Expand Down
9 changes: 5 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[bdist_wheel]
universal = 1

[bumpversion]
current_version = 0.4.0
current_version = 0.4.1
commit = True
tag = True
files = setup.py environ/environ.py docs/conf.py

[bdist_wheel]
universal = 1

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
here = os.path.abspath(os.path.dirname(__file__))
README = io.open(os.path.join(here, 'README.rst'), encoding="utf8").read()

version = '0.4.0'
version = '0.4.1'
author = 'joke2k'
description = "Django-environ allows you to utilize 12factor inspired environment " \
"variables to configure your Django application."
Expand Down

0 comments on commit b1d9b6e

Please sign in to comment.