diff --git a/CHANGELOG.md b/CHANGELOG.md index 3121b525..a0c0b126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,32 @@ ## 0.1 series +### 0.1.30 + +Various smaller fixes: + +* Vis: Handle missing data more gracefully by @dweindl + in https://github.com/PEtab-dev/libpetab-python/pull/175 +* Fix test dependencies: scipy by @dweindl + in https://github.com/PEtab-dev/libpetab-python/pull/177 +* Add `petab.Problem.__str__` by @dweindl + in https://github.com/PEtab-dev/libpetab-python/pull/178 +* Fix deprecated tight layout matplotlib by @yannikschaelte + in https://github.com/PEtab-dev/libpetab-python/pull/180 +* Move tests to tox by @yannikschaelte + in https://github.com/PEtab-dev/libpetab-python/pull/182 +* Update deprecated functions in tests by @yannikschaelte + in https://github.com/PEtab-dev/libpetab-python/pull/181 +* Use petab identifier for combine archives by @fbergmann + in https://github.com/PEtab-dev/libpetab-python/pull/179 + +New Contributors +* @fbergmann made their first contribution + in https://github.com/PEtab-dev/libpetab-python/pull/179 + +**Full Changelog**: +https://github.com/PEtab-dev/libpetab-python/compare/v0.1.29...v0.1.30 + ### 0.1.29 Features: diff --git a/petab/version.py b/petab/version.py index 7b8a4e25..5f499f51 100644 --- a/petab/version.py +++ b/petab/version.py @@ -1,2 +1,2 @@ """PEtab library version""" -__version__ = '0.1.29' +__version__ = '0.1.30'