From 4bdc8e289263145d7a219a060732854fb36c44ac Mon Sep 17 00:00:00 2001 From: Mariya Lysenkova Wiklander Date: Mon, 9 Dec 2024 12:17:20 +0100 Subject: [PATCH] bump version v1.1.0 -> v1.1.1 --- README.md | 2 +- pyproject.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c48d941..16394c8 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@

Conformist

-Conformist v1.1.0 is an implementation of conformal prediction, specifically conformal risk control. It was written using Python 3.8. +Conformist v1.1.1 is an implementation of conformal prediction, specifically conformal risk control. It was written using Python 3.8. *BaseCoP* contains utility functions common to all conformal predictors, such as splitting data into calibration and validation sets, and setting up runs. It is extended by *FNRCoP* that implements conformal risk control. diff --git a/pyproject.toml b/pyproject.toml index 7789c81..349d27a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "conformist" -version = "v1.1.0" +version = "v1.1.1" description = "Conformal prediction for machine learning classifiers" readme = "README.md" authors = [{ name = "Mariya Lysenkova Wiklander", email = "mariya.lysenkova@medsci.uu.se" }] @@ -33,7 +33,7 @@ dev = ["black", "bumpver", "isort", "pip-tools", "pytest"] Homepage = "https://github.com/Molmed/conformist" [tool.bumpver] -current_version = "v1.1.0" +current_version = "v1.1.1" version_pattern = "vMAJOR.MINOR.PATCH" commit_message = "bump version {old_version} -> {new_version}" tag_message = "{new_version}"