Skip to content

Commit

Permalink
chore: Release 0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pennersr committed Sep 9, 2020
1 parent 4514e1b commit 8d1853e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions healthpoint/__init__.py
Expand Up @@ -4,12 +4,12 @@
| | |___ /~~\ |___ | | | | \__/ | | \| |
"""
VERSION = (0, 4, 0, 'final', 0)
VERSION = (0, 4, 1, 'final', 0)

__title__ = 'django-healthpoint'
__version_info__ = VERSION
__version__ = '.'.join(map(str, VERSION[:3])) + ('-{}{}'.format(
VERSION[3], VERSION[4] or '') if VERSION[3] != 'final' else '')
__author__ = 'Raymond Penners'
__license__ = 'MIT'
__copyright__ = 'Copyright 2018-2019 Raymond Penners and contributors'
__copyright__ = 'Copyright 2018-2020 Raymond Penners and contributors'

0 comments on commit 8d1853e

Please sign in to comment.