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 Changelog
========= =========
Version 0.4.2
=============
- Add a few licenses
- Drop dependency to textunwrap
Version 0.4.1 Version 0.4.1
============= =============

View File

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

View File

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

View File

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