diff --git a/.github/requirements_min.txt b/.github/requirements_min.txt index ac3f066d..16123c47 100644 --- a/.github/requirements_min.txt +++ b/.github/requirements_min.txt @@ -5,7 +5,7 @@ numpy==1.22 docstring-parser==0.16 matplotlib==3.3 pydantic==2.0.0 -pyglotaran==0.7.2 +pyglotaran==0.7.0 ruamel-yaml==0.18.6 tabulate==0.8.9 xarray==2022.3 diff --git a/changelog.md b/changelog.md index ece8b332..f99fe1e7 100644 --- a/changelog.md +++ b/changelog.md @@ -2,11 +2,14 @@ (changes-0_7_3)= -## 0.7.3 (Unreleased) +## 0.7.3 (2024-08-25) -- 🩹 Fix incompatibility of plot_data_and_fits with matplotlib>=3.8 (#275) -- 🩹 Fix deprecation warning for using xr.Dataset.dim (#267) +- ✨ Add configuration for plot functions (#288) +- ✨ Add plot_pfid plot function (#283) - 🩹 Fix very slow data/residual plots (#239) +- 🩹 Fix deprecation warning for using xr.Dataset.dim (#267) +- 🩹🚇 Adapt to changed outputs in pyglotaran-examples GHA (#273) +- 🩹 Fix incompatibility of plot_data_and_fits with matplotlib>=3.8 (#275) (changes-0_7_2)= diff --git a/pyglotaran_extras/__init__.py b/pyglotaran_extras/__init__.py index 2ea1c4c6..ef03a563 100644 --- a/pyglotaran_extras/__init__.py +++ b/pyglotaran_extras/__init__.py @@ -70,7 +70,7 @@ "CONFIG", ] -__version__ = "0.7.2" +__version__ = "0.7.3" SCRIPT_DIR = _find_script_dir_at_import(__file__) """User script dir determined during import."""