From 9d65711b4a3daa7ab4db563d6159f80b16f0f9c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 22 Jan 2024 10:21:24 +0000 Subject: [PATCH] =?UTF-8?q?bump:=20version=201.7.0=20=E2=86=92=201.8.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 7 +++++++ pyproject.toml | 4 ++-- src/amltk/__version__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 118d29ef..eb172db2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 1.8.0 (2024-01-22) + +### Feat + +- **Pynisher**: Detect tasks with `Trial` to report `FAIL` (#220) +- **Pipeline**: `factorize()` a pipeline into its possibilities (#217) + ## 1.7.0 (2024-01-16) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 7c86a28e..ac4b17b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "amltk" -version = "1.7.0" +version = "1.8.0" dependencies = [ "typing_extensions", # Better typing "more_itertools", # Better iteration @@ -97,7 +97,7 @@ exclude_lines = [ [tool.commitizen] name = "cz_conventional_commits" -version = "1.7.0" +version = "1.8.0" update_changelog_on_bump = true version_files = ["pyproject.toml:version", "src/amltk/__version__.py"] changelog_start_rev = "1.0.0" diff --git a/src/amltk/__version__.py b/src/amltk/__version__.py index 869de5e5..fc1822ec 100644 --- a/src/amltk/__version__.py +++ b/src/amltk/__version__.py @@ -1,3 +1,3 @@ from __future__ import annotations -version = "1.7.0" +version = "1.8.0"