From e091f9c9594bcb1d04a8fbfffc885722c4c2c765 Mon Sep 17 00:00:00 2001 From: SkalskiP Date: Wed, 12 Apr 2023 17:54:06 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9A=20Docs=20`changelog.md`=20update?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/changelog.md | 5 +++++ supervision/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 481e017df..bd4b09524 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,8 @@ +### 0.5.1 April 12, 2023 + +- Fixed `Detections.__getitem__` method did not return mask for selected item. +- Fixed `Detections.area` crashed for mask detections. + ### 0.5.0 April 10, 2023 - Added [[#58](https://github.com/roboflow/supervision/pull/58)]: `Detections.mask` to enable segmentation support. diff --git a/supervision/__init__.py b/supervision/__init__.py index eefd48c40..cf2838e79 100644 --- a/supervision/__init__.py +++ b/supervision/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" from supervision.annotation.voc import detections_to_voc_xml from supervision.detection.annotate import BoxAnnotator, MaskAnnotator