diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c97109..46ce2ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,27 @@ # CHANGELOG +## v0.8.0 (2024-07-31) + + +### Build + +* build(deps): bump certifi in /examples/torch_mnist (#133) ([`e13fd16`](https://github.com/Helmholtz-AI-Energy/perun/commit/e13fd167c9b64aad25eabf6a12be3886111150d7)) + +* build(deps): bump urllib3 from 2.0.7 to 2.2.2 in /examples/torch_mnist (#130) ([`028a781`](https://github.com/Helmholtz-AI-Energy/perun/commit/028a781211d887733a59bf1a220e9a2d922f109b)) + + +### Ci + +* ci: pre-commit autoupdate (#131) ([`dcf277e`](https://github.com/Helmholtz-AI-Energy/perun/commit/dcf277e9c1ec5c67326795b094bf3f2915a0d5a9)) + +* ci: action version updates ([`9b546e4`](https://github.com/Helmholtz-AI-Energy/perun/commit/9b546e4a188f264882e9c731030d2c719b312e32)) + + +### Feature + +* feat: include/exclude measurements and precise sampling period (#134) ([`6c1db34`](https://github.com/Helmholtz-AI-Energy/perun/commit/6c1db34d6210e814a7028e2ca581ca3e4d48b5e8)) + ## v0.7.0 (2024-06-07) @@ -503,3 +524,4 @@ ### Fix * fix: semantic-release action ([`90caf3d`](https://github.com/Helmholtz-AI-Energy/perun/commit/90caf3d6817e42c21ad1f9d30a32038fe96c0362)) + diff --git a/docs/conf.py b/docs/conf.py index 13152c2..4c7dc6d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -9,7 +9,7 @@ project = "perun" copyright = "2023, Juan Pedro Gutiérrez Hermosillo Muriedas" author = "Juan Pedro Gutiérrez Hermosillo Muriedas" -release = "0.7.0" +release = "0.8.0" # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/perun/__init__.py b/perun/__init__.py index c439286..53a7929 100644 --- a/perun/__init__.py +++ b/perun/__init__.py @@ -1,7 +1,7 @@ """perun module.""" # flake8: noqa -__version__ = "0.7.0" +__version__ = "0.8.0" from perun.configuration import config from perun.logging import init_logging diff --git a/pyproject.toml b/pyproject.toml index 951cf1c..9448537 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "perun" -version = "0.7.0" +version = "0.8.0" description = "" authors = ["Gutiérrez Hermosillo Muriedas, Juan Pedro "] license = "BSD-3-Clause"