diff --git a/CHANGELOG.md b/CHANGELOG.md index a77f9af26..3582afdb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 0.10.1 (2022-12-14) + +### Fix + +- negative-wait (#106) + ## 0.10.0 (2022-12-13) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 1f47be830..98a72f18c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ use_parentheses = true ensure_newline_before_comments = true [tool.commitizen] -version = "0.10.0" +version = "0.10.1" version_files = [ "src/qililab/config/version.py", "pyproject.toml:version" diff --git a/src/qililab/config/version.py b/src/qililab/config/version.py index 4aa0ecb8e..ff3eeeee3 100644 --- a/src/qililab/config/version.py +++ b/src/qililab/config/version.py @@ -1,2 +1,2 @@ """ library version """ -__version__ = "0.10.0" +__version__ = "0.10.1"