diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ff1fe7d1f80..858387bb3e3 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -51,7 +51,7 @@ repos: args: [--in-place, --wrap-summaries=115, --wrap-descriptions=120] - repo: https://github.com/PyCQA/isort - rev: 5.11.4 + rev: 5.12.0 hooks: - id: isort name: imports diff --git a/CHANGELOG.md b/CHANGELOG.md index 7aaf855568e..20ff2e5f235 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,42 +7,15 @@ 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-MM-DD - -### Added - -- - - - -### Changed - -- - - -### Deprecated - -- - - -### Removed - -- - +## [0.11.1] - 2023-01-30 ### Fixed - Fixed type checking on the `maximize` parameter at the initialization of `MetricTracker` ([#1428](https://github.com/Lightning-AI/metrics/issues/1428)) - - Fixed mixed precision autocast for `SSIM` metric ([#1454](https://github.com/Lightning-AI/metrics/pull/1454)) - -- Fix checking for `nltk.punkt` in `RougeScore` if a machine is not online ([#1456](https://github.com/Lightning-AI/metrics/pull/1456)) - - +- Fixed checking for `nltk.punkt` in `RougeScore` if a machine is not online ([#1456](https://github.com/Lightning-AI/metrics/pull/1456)) - Fixed wrongly reset method in `MultioutputWrapper` ([#1460](https://github.com/Lightning-AI/metrics/issues/1460)) - - -- Fix dtype checking in `PrecisionRecallCurve` for `target` tensor ([#1457](https://github.com/Lightning-AI/metrics/pull/1457)) +- Fixed dtype checking in `PrecisionRecallCurve` for `target` tensor ([#1457](https://github.com/Lightning-AI/metrics/pull/1457)) ## [0.11.0] - 2022-11-30 diff --git a/src/torchmetrics/__about__.py b/src/torchmetrics/__about__.py index d5ef62df311..3dd00a09b98 100644 --- a/src/torchmetrics/__about__.py +++ b/src/torchmetrics/__about__.py @@ -1,8 +1,8 @@ -__version__ = "0.11.0" +__version__ = "0.11.1" __author__ = "Lightning-AI et al." __author_email__ = "name@pytorchlightning.ai" __license__ = "Apache-2.0" -__copyright__ = f"Copyright (c) 2020-2022, {__author__}." +__copyright__ = f"Copyright (c) 2020-2023, {__author__}." __homepage__ = "https://github.com/Lightning-AI/metrics" __docs__ = "PyTorch native Metrics" __docs_url__ = "https://torchmetrics.readthedocs.io/en/stable/"