diff --git a/CHANGELOG.md b/CHANGELOG.md index d0dbd6995..1ce3eefa0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## 0.14.0 (2023-01-17) + +### Feat + +- **Experiment**: added remote experiment saving (#112) + ## 0.13.0 (2023-01-17) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 1a8a1b326..40e8f2846 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,7 +46,7 @@ use_parentheses = true ensure_newline_before_comments = true [tool.commitizen] -version = "0.13.0" +version = "0.14.0" 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 f296f8010..9aa11dfdf 100644 --- a/src/qililab/config/version.py +++ b/src/qililab/config/version.py @@ -1,2 +1,2 @@ """ library version """ -__version__ = "0.13.0" +__version__ = "0.14.0"