From 8d43ef8a070cd78e5a18a14c132d7072bb2148c4 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Fri, 18 Oct 2024 14:13:19 +0200 Subject: [PATCH] chore: 0.8.8 Automatically generated by python-semantic-release --- CHANGELOG.md | 10 ++++++++++ docs/conf.py | 2 +- perun/__init__.py | 2 +- pyproject.toml | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d79e922..0d7cdce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # CHANGELOG +## v0.8.8 (2024-10-18) + + +### Fix + +* fix: `@perun` decorator returns the last execution result (#147) ([`1647f9d`](https://github.com/helmholtz-ai-energy/perun/commit/1647f9db042c006046881cad6eafe649c963e4b8)) + +* fix: fixed wrong assumption on number of core freq elements (#145) ([`96803df`](https://github.com/helmholtz-ai-energy/perun/commit/96803df9c118b37aa37da120f631220efbb9b8d0)) + + ## v0.8.7 (2024-08-16) diff --git a/docs/conf.py b/docs/conf.py index ff4f208..c5f6d4e 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.8.7" +release = "0.8.8" # -- 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 ddf7bbc..39f9932 100644 --- a/perun/__init__.py +++ b/perun/__init__.py @@ -1,7 +1,7 @@ """perun module.""" # flake8: noqa -__version__ = "0.8.7" +__version__ = "0.8.8" from perun.configuration import config from perun.logging import init_logging diff --git a/pyproject.toml b/pyproject.toml index 870b571..e1aa4c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "perun" -version = "0.8.7" +version = "0.8.8" description = "Measure the energy used by your MPI+Python applications." authors = [ {name = "Gutiérrez Hermosillo Muriedas, Juan Pedro", email="juan.muriedas@kit.edu"}