diff --git a/CHANGELOG.md b/CHANGELOG.md index efe21fd..b974bfc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +## 1.2.0 (2023-02-24) + +### Feat + +- call different tox environment due to how OS call python binary +- unify workflow, deactivating others +- removed complete workflow, cibuildwheel does not build pure python package +- add python-active-versions and check-python-versions + + +### Fix + +- coverage file name +- remove invalid signal CTRL_BREAK for windows +- remove invalid signal value on windows +- fallback to previous workflows, adding OS +- remove unnecessary else after raise or return + ## 1.1.0 (2023-02-20) ### Feat diff --git a/broadlink_listener/__init__.py b/broadlink_listener/__init__.py index ae19e25..5b49331 100644 --- a/broadlink_listener/__init__.py +++ b/broadlink_listener/__init__.py @@ -6,4 +6,4 @@ __author__ = "Gabriele Pongelli" __email__ = "gabriele.pongelli@gmail.com" -__version__ = "1.1.0" +__version__ = "1.2.0" diff --git a/pyproject.toml b/pyproject.toml index cb39b6c..b916bd1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [tool.poetry] name = "broadlink-listener" - version = "1.1.0" + version = "1.2.0" homepage = "https://github.com/gpongelli/broadlink-listener" description = "Broadlink IR codes listener and SmartIR json generator." authors = ["Gabriele Pongelli "] @@ -105,7 +105,7 @@ [tool.commitizen] name = "cz_conventional_commits" - version = "1.1.0" + version = "1.2.0" version_files = [ "broadlink_listener/__init__.py:__version__", "pyproject.toml:version"