diff --git a/README.md b/README.md index 71d68f9..3162292 100644 --- a/README.md +++ b/README.md @@ -217,6 +217,7 @@ pip install flake8 pytest coverage It is useful to check if the test coverage changed with `coverage run -m pytest` and then `coverage html`, which generates a `htmlcov/index.html` file with all the information. ### Changelog + * 1.6.4: Functionality related to sending of sACN data is now mostly covered by tests. Removed undocumented parameters for `sACNsender.start()`. * 1.6.3: Functionality related to receiving sACN data is now mostly covered by tests. Fixed a bug, where an exception was thrown on the first `DataPacket` when the stream-termination option was set. (Additional thanks to mthespian! See #31 for more information) * 1.6.2: Test coverage of sub-module `messages` is now 100%. Fixed a bug where a too long source name did not throw an exception. Fixed a bug where invalid DMX data could be set on the `DataPacket`. (Thanks to mthespian! See #30 for more information) diff --git a/setup.py b/setup.py index 1e2a2bf..f33f8ef 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='sacn', - version='1.6.3', + version='1.6.4', description='sACN / E1.31 module for easy handling of DMX data over ethernet', long_description=long_description, long_description_content_type="text/markdown",