diff --git a/CHANGELOG.md b/CHANGELOG.md index e0c9e7bd68..1f1caee3df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## \[Unreleased\] -## 09/2023 - Release 1.5.0 +## 15/09/2023 - Release 1.5.0 ### New features - Add tabular data import/export () @@ -23,8 +23,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 () ### Enhancements -- Remove xfail marks from the convert integration tests - () - Enhance `ClassificationValidator` for multi-label classification datasets with `label_groups` () - Replace Roboflow `xml.etree` with `defusedxml` @@ -38,7 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Remove deprecates announced to be removed in 1.5.0 () - Add multi-threading option to ModelTransform and SAMBboxToInstanceMask - () + (, ) ### Bug fixes - Fix bugs for Tile transform diff --git a/docs/source/docs/release_notes.rst b/docs/source/docs/release_notes.rst index 056062d91b..e5559a31f5 100644 --- a/docs/source/docs/release_notes.rst +++ b/docs/source/docs/release_notes.rst @@ -4,8 +4,39 @@ Release Notes .. toctree:: :maxdepth: 1 +v1.5.0 (2023.09) +---------------- + +New features +^^^^^^^^^^^^ +- Add tabular data import/export +- Support video annotation import/export +- Add multiframework (PyTorch, Tensorflow) converter +- Add SAM OVMS and Triton server Docker image builders +- Add SAMBboxToInstanceMask transform +- Add ConfigurableValicator + +Enhancements +^^^^^^^^^^^^ +- Enhance `ClassificationValidator` for multi-label classification datasets with `label_groups` +- Replace Roboflow `xml.etree` with `defusedxml` +- Define `GroupType` with `IntEnum` for, where `0` is `EXCLUSIVE` +- Add Rust API to optimize COCOPageMapper performance +- Support a dictionary input in addition to a single image input for the model launcher to support Segment Anything Model +- Remove deprecates announced to be removed in 1.5.0 +- Add multi-threading option to ModelTransform and SAMBboxToInstanceMask + +Bug fixes +^^^^^^^^^ +- Fix bugs for Tile transform +- Disable Roboflow Tfrecord format when Tensorflow is not installed +- Raise VcsAlreadyExists error if vcs directory exists + v1.4.1 (2023.07) ---------------- + +Bug fixes +^^^^^^^^^ - Report errors for COCO (stream) and Datumaro importers v1.4.0 (2023.07) diff --git a/src/datumaro/version.py b/src/datumaro/version.py index daa13ee8e9..5b60188613 100644 --- a/src/datumaro/version.py +++ b/src/datumaro/version.py @@ -1 +1 @@ -__version__ = "1.5.0rc2" +__version__ = "1.5.0"