Bump version 0.4.2.

This commit is contained in:
Julien Palard 2017-05-09 00:01:28 +02:00
parent 813ce1c819
commit 69c6f3ee5e
4 changed files with 10 additions and 4 deletions

View File

@ -2,6 +2,13 @@
Changelog
=========
Version 0.4.2
=============
- Add a few licenses
- Drop dependency to textunwrap
Version 0.4.1
=============

View File

@ -52,7 +52,7 @@ copyright = u'2017, Julien Palard'
# The short X.Y version.
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.4.1'
release = '0.4.2'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -21,7 +21,7 @@ def setup_package():
sphinx = ['sphinx'] if needs_sphinx else []
setup(
name='licensename',
version='0.4.1',
version='0.4.2',
description='Find a license name from a license file.',
long_description=readme,
author='Julien Palard',

View File

@ -1,4 +1,3 @@
VERSION = (0, 4)
__version__ = '.'.join(map(str, VERSION))
__version__ = '0.4.2'
from .licensename import from_file, from_text