From db6050e1db01c4296579bb38908d94de4cf2feae Mon Sep 17 00:00:00 2001 From: Joachim Lusiardi Date: Fri, 14 Feb 2020 10:09:42 +0100 Subject: [PATCH] bump version --- CHANGES.md | 6 ++++++ setup.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 17a91b0..d155959 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,12 @@ # Changes +## Version 0.4.0 + +New Features: + + - Support encoding and decoding `IntEnum` keys and and values + ## Version 0.3.0 New Features: diff --git a/setup.py b/setup.py index 3e482cb..7667429 100644 --- a/setup.py +++ b/setup.py @@ -23,14 +23,14 @@ setuptools.setup( name='tlv8', packages=setuptools.find_packages(exclude=['tests']), - version='0.3.0', + version='0.4.0', description='Python module to handle type-length-value (TLV) encoded data 8-bit type, 8-bit length, and N-byte ' 'value as described within the Apple HomeKit Accessory Protocol Specification Non-Commercial Version ' 'Release R2.', author='Joachim Lusiardi', author_email='pypi@lusiardi.de', url='https://github.com/jlusiardi/tlv8_python', - download_url='https://github.com/jlusiardi/tlv8_python/archive/0.3.0.tar.gz', + download_url='https://github.com/jlusiardi/tlv8_python/archive/0.4.0.tar.gz', keywords=['TLV', 'Type-Length-Value', 'tlv8'], classifiers=[ 'License :: OSI Approved :: Apache Software License',