📚 Docs `changelog.md` update

This commit is contained in:
SkalskiP 2023-04-12 17:54:06 +02:00
parent f12504b0dd
commit e091f9c959
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
### 0.5.1 <small>April 12, 2023</small>
- Fixed `Detections.__getitem__` method did not return mask for selected item.
- Fixed `Detections.area` crashed for mask detections.
### 0.5.0 <small>April 10, 2023</small>
- Added [[#58](https://github.com/roboflow/supervision/pull/58)]: `Detections.mask` to enable segmentation support.

View File

@ -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