diff --git a/README.md b/README.md index 068f732..197baf5 100644 --- a/README.md +++ b/README.md @@ -123,6 +123,13 @@ cec.transmit(destination, opcode, parameters) ## Changelog +### 0.2.7 ( 2018-11-09 ) +* Implement cec.EVENT_COMMAND callback +* Fix several crashes/memory leaks related to callbacks +* Add possibility to use a method as a callback +* Limit maximum number of parameters passed to transmit() +* Fix compilation error with GCC >= 8 + ### 0.2.6 ( 2017-11-03 ) * Python 3 support ( @nforro ) * Implement is_active_source, set_active_source, transmit ( @nforro ) diff --git a/setup.py b/setup.py index f38c7f5..8fa821d 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ include_dirs=['include'], libraries = [ 'cec' ]) -setup(name='cec', version='0.2.6', +setup(name='cec', version='0.2.7', description="Python bindings for libcec", license='GPLv2', data_files=['COPYING'],