Added
- Added `MulticlassExactMatch` to classification metrics ([1343](https://github.com/Lightning-AI/torchmetrics/pull/1343))
- Added `TotalVariation` to image package ([978](https://github.com/Lightning-AI/torchmetrics/pull/978))
- Added `CLIPScore` to new multimodal package ([1314](https://github.com/Lightning-AI/torchmetrics/pull/1314))
- Added regression metrics:
* `KendallRankCorrCoef` ([1271](https://github.com/Lightning-AI/torchmetrics/pull/1271))
* `LogCoshError` ([1316](https://github.com/Lightning-AI/torchmetrics/pull/1316))
- Added new nominal metrics:
* `CramersV` ([1298](https://github.com/Lightning-AI/torchmetrics/pull/1298))
* `PearsonsContingencyCoefficient` ([1334](https://github.com/Lightning-AI/torchmetrics/pull/1334))
* `TschuprowsT` ([1334](https://github.com/Lightning-AI/torchmetrics/pull/1334))
* `TheilsU` ([1337](https://github.com/Lightning-AI/torchmetrics/pull/1334))
- Added option to pass `distributed_available_fn` to metrics to allow checks for custom communication backend for making `dist_sync_fn` actually useful ([1301](https://github.com/Lightning-AI/torchmetrics/pull/1301))
- Added `normalize` argument to `Inception`, `FID`, `KID` metrics ([1246](https://github.com/Lightning-AI/torchmetrics/pull/1246))
Changed
- Changed minimum Pytorch version to be 1.8 ([1263](https://github.com/Lightning-AI/torchmetrics/pull/1263))
- Changed interface for all functional and modular classification metrics after refactor ([1252](https://github.com/Lightning-AI/torchmetrics/pull/1252))
Removed
- Removed deprecated `BinnedAveragePrecision`, `BinnedPrecisionRecallCurve`, `RecallAtFixedPrecision` ([1251](https://github.com/Lightning-AI/torchmetrics/pull/1251))
- Removed deprecated `LabelRankingAveragePrecision`, `LabelRankingLoss` and `CoverageError` ([1251](https://github.com/Lightning-AI/torchmetrics/pull/1251))
- Removed deprecated `KLDivergence` and `AUC` ([1251](https://github.com/Lightning-AI/torchmetrics/pull/1251))
Fixed
- Fixed precision bug in `pairwise_euclidean_distance` ([1352](https://github.com/Lightning-AI/torchmetrics/pull/1352))
---