diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ad1f2a..efe21fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +## 1.1.0 (2023-02-20) + +### Feat + +- new test for json generation, remove temp files +- new test for dict saving +- handle signals, saving partial dict. +- use event instead of bool to prompt waiting user +- save partial dict when nothing listened, skip combination if previously saved +- extract partial_inc from file saved, input filename as path in init +- remove tmp file when saving final dict +- load partial file plus tests +- save partial dictionary listened +- wait user input after a set of code listened, save to json that will be loaded on nex run to skip already read combinations + +### Fix + +- wait before first code if codes were loaded from previous file + ## 1.0.0 (2022-12-18) ### Feat diff --git a/broadlink_listener/__init__.py b/broadlink_listener/__init__.py index a9d75f5..ae19e25 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.0.0" +__version__ = "1.1.0" diff --git a/pyproject.toml b/pyproject.toml index 16ec239..b73be8f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ [tool.poetry] name = "broadlink-listener" - version = "1.0.0" + version = "1.1.0" homepage = "https://github.com/gpongelli/broadlink-listener" description = "Broadlink IR codes listener and SmartIR json generator." authors = ["Gabriele Pongelli "] @@ -103,7 +103,7 @@ [tool.commitizen] name = "cz_conventional_commits" - version = "1.0.0" + version = "1.1.0" version_files = [ "broadlink_listener/__init__.py:__version__", "pyproject.toml:version"