From 520625c3531bf158e1f57b93016a338b10de126e Mon Sep 17 00:00:00 2001 From: Jirka Date: Sun, 10 Sep 2023 00:42:45 +0200 Subject: [PATCH] releasing 1.1.2 --- CHANGELOG.md | 15 +-------------- src/torchmetrics/__about__.py | 2 +- 2 files changed, 2 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da0b81906e7..6c194194b2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,27 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 **Note: we move fast, but still we preserve 0.1 version (one feature release) back compatibility.** -## [UnReleased] - 2023-09-DD - -### Changed - -- - +## [1.1.2] - 2023-09-11 ### Fixed - Fixed tie breaking in ndcg metric ([#2031](https://github.com/Lightning-AI/torchmetrics/pull/2031)) - - - Fixed bug in `BootStrapper` when very few samples were evaluated that could lead to crash ([#2052](https://github.com/Lightning-AI/torchmetrics/pull/2052)) - - - Fixed bug when creating multiple plots that lead to not all plots being shown ([#2060](https://github.com/Lightning-AI/torchmetrics/pull/2060)) - - - Fixed performance issues in `RecallAtFixedPrecision` for large batch sizes ([#2042](https://github.com/Lightning-AI/torchmetrics/pull/2042)) - - - Fixed bug related to `MetricCollection` used with custom metrics have `prefix`/`postfix` attributes ([#2070](https://github.com/Lightning-AI/torchmetrics/pull/2070)) ## [1.1.1] - 2023-08-29 diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index bfa1833d653..702a2618d58 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,4 +1,4 @@ -__version__ = "1.1.1" +__version__ = "1.1.2" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0"