From f4678491665a2199d1988d625caa502ae84fa11a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20K=C3=BCderle?= Date: Fri, 28 Jun 2024 14:19:50 +0200 Subject: [PATCH] Version bump --- CHANGELOG.md | 7 ++++++- pyproject.toml | 2 +- tpcp/__init__.py | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1eb956..0bcf2f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,13 +4,18 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) (+ the Migration Guide), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.34.0] - +## [0.34.0] - 2024-06-28 ### Added - Dataset classes are now generic and allow you to provide the group-label tuple as generic. This allows for better type checking and IDE support. (https://github.com/mad-lab-fau/tpcp/pull/113) +### Changed/Fixed + +- The snapshot utilities are much more robust now and rais appropriate errors when the stored dataframes have + unsupported properties. (https://github.com/mad-lab-fau/tpcp/pull/112) + ## [0.33.1] - 2024-06-14 - Only warning about global caching once. diff --git a/pyproject.toml b/pyproject.toml index c9c5a57..56e0778 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "tpcp" -version = "0.33.1" +version = "0.34.0" description = "Pipeline and Dataset helpers for complex algorithm evaluation." authors = [ "Arne Küderle ", diff --git a/tpcp/__init__.py b/tpcp/__init__.py index 7274e6e..fb40718 100644 --- a/tpcp/__init__.py +++ b/tpcp/__init__.py @@ -23,7 +23,7 @@ ) from tpcp._pipeline import OptimizablePipeline, Pipeline -__version__ = "0.33.1" +__version__ = "0.34.0" __all__ = [