Preparing release 0.28

This commit is contained in:
Nigel Dokter 2021-02-12 17:56:33 +01:00
parent 399532f244
commit f806cc01d3
2 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,10 @@
Change Log
----------
**0.28** (2021-02-21)
- Optional keep alive monitoring for TCP/IP connections (`pull request #73 <https://github.com/ndokter/dsmr_parser/pull/73>`_).
- Catch parse errors in TelegramParser, ignore lines that can not be parsed (`pull request #74 <https://github.com/ndokter/dsmr_parser/pull/74>`_).
**0.27** (2020-12-24)
- fix for empty parentheses in ProfileGenericParser (redone) (`pull request #69 <https://github.com/ndokter/dsmr_parser/pull/69>`_).

View File

@ -3,10 +3,10 @@ from setuptools import setup, find_packages
setup(
name='dsmr-parser',
description='Library to parse Dutch Smart Meter Requirements (DSMR)',
author='Nigel Dokter',
author='Nigel Dokter and many others',
author_email='nigel@nldr.net',
url='https://github.com/ndokter/dsmr_parser',
version='0.27',
version='0.28',
packages=find_packages(exclude=('test', 'test.*')),
install_requires=[
'pyserial>=3,<4',