Skip to content

Commit

Permalink
Prepared new release
Browse files Browse the repository at this point in the history
  • Loading branch information
AKuederle committed Aug 30, 2023
1 parent 225079e commit 75b958e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ 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.23.0] - 2023-08-30

## Added
- We migrated some testing utilities from other libraries to tpcp and exposed some algorithm test helper
that previously only existed in the tests folder via the actual tpcp API.
This should make testing algorithms and pipelines developed with tpcp easier.
These new features are now available in the `tpcp.testing` module.
(https://github.com/mad-lab-fau/tpcp/pull/89)

## [0.22.1] - 2023-08-30

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tpcp"
version = "0.22.1"
version = "0.23.0"
description = "Pipeline and Dataset helpers for complex algorithm evaluation."
authors = [
"Arne Küderle <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion tpcp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
)
from tpcp._pipeline import OptimizablePipeline, Pipeline

__version__ = "0.22.1"
__version__ = "0.23.0"


__all__ = [
Expand Down
1 change: 0 additions & 1 deletion tpcp/testing/_algorithm_test_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ class that should be tested.
Examples
--------
>>> class TestMyAlgorithm(TestAlgorithmMixin):
... ALGORITHM_CLASS = MyAlgorithm
... __test__ = True
Expand Down

0 comments on commit 75b958e

Please sign in to comment.