diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 14fc532..dbebfea 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,5 +1,9 @@ Change Log ---------- +**0.3** + +- Added asyncio reader for non-blocking reads. + **0.2** (2016-11-08) - User https://github.com/aequitas added support for DMSR version 2.2 diff --git a/README.rst b/README.rst index f63d373..23aff2f 100644 --- a/README.rst +++ b/README.rst @@ -11,7 +11,7 @@ also includes a serial client to directly read and parse smart meter data. Features -------- -DSMR Parser currently supports DSMR versions 2.2 and 4.x. It has been tested with Python 3.5 +DSMR Parser currently supports DSMR versions 2.2 and 4.x. It has been tested with Python 3.5 and 3.4. Examples diff --git a/setup.py b/setup.py index cc79d2d..855f005 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( author='Nigel Dokter', author_email='nigeldokter@gmail.com', url='https://github.com/ndokter/dsmr_parser', - version='0.2', + version='0.3', packages=find_packages(), install_requires=[ 'pyserial>=3,<4',