diff --git a/README.md b/README.md index 4ac2b71..95a36f3 100644 --- a/README.md +++ b/README.md @@ -220,6 +220,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.7.0: Added function for removing a listener on a receiver. See `sACNreceiver.remove_listener()` for more information. * 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. diff --git a/setup.py b/setup.py index f33f8ef..c44b682 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name='sacn', - version='1.6.4', + version='1.7.0', description='sACN / E1.31 module for easy handling of DMX data over ethernet', long_description=long_description, long_description_content_type="text/markdown",