From 3da433f90f16980b46b27017529a74e59520d007 Mon Sep 17 00:00:00 2001 From: SkalskiP Date: Thu, 11 May 2023 00:31:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=AA=B5=20`0.7.0`=20release=20changelog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/changelog.md | 7 +++++++ supervision/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 19ede356..4fd61958 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,10 @@ +### 0.7.0 May 11, 2023 + +- Added [[#91](https://github.com/roboflow/supervision/pull/91)]: `Detections.from_yolo_nas` to enable seamless integration with [YOLO-NAS](https://github.com/Deci-AI/super-gradients/blob/master/YOLONAS.md) model. +- Added [[#86](https://github.com/roboflow/supervision/pull/86)]: ability to load datasets in YOLO format using `Dataset.from_yolo`. +- Added [[#84](https://github.com/roboflow/supervision/pull/84)]: `Detections.merge` to merge multiple `Detections` objects together. +- Fixed [[#81](https://github.com/roboflow/supervision/pull/81)]: `LineZoneAnnotator.annotate` does not return annotated frame. + ### 0.6.0 April 19, 2023 - Added [[#71](https://github.com/roboflow/supervision/pull/71)]: initial `Dataset` support and ability to save `Detections` in Pascal VOC XML format. diff --git a/supervision/__init__.py b/supervision/__init__.py index e5458b95..f44e06ee 100644 --- a/supervision/__init__.py +++ b/supervision/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.6.0" +__version__ = "0.7.0" from supervision.dataset.core import Dataset from supervision.detection.annotate import BoxAnnotator, MaskAnnotator