From 2cc75f8b0983a613d5f281a640b57d333d82af5d Mon Sep 17 00:00:00 2001 From: Austin Hendrix Date: Wed, 5 Jan 2022 10:49:40 -0800 Subject: [PATCH] Version 0.2.8 --- README.md | 6 ++++++ setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d36f8a..baf2141 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,12 @@ cec.transmit(destination, opcode, parameters) ## Changelog +### 0.2.8 ( 2022-01-05 ) +* Add support for libCEC >= 5 +* Windows support +* Support for setting CEC initiator +* Python 3.10 compatibility + ### 0.2.7 ( 2018-11-09 ) * Implement cec.EVENT_COMMAND callback * Fix several crashes/memory leaks related to callbacks diff --git a/setup.py b/setup.py index 8fa821d..02fca0c 100644 --- a/setup.py +++ b/setup.py @@ -14,7 +14,7 @@ include_dirs=['include'], libraries = [ 'cec' ]) -setup(name='cec', version='0.2.7', +setup(name='cec', version='0.2.8', description="Python bindings for libcec", license='GPLv2', data_files=['COPYING'],