From 4619bafd37d21db0d9fd4b7012805267ab6ab953 Mon Sep 17 00:00:00 2001 From: Yunchu Lee Date: Fri, 27 Sep 2024 21:59:12 +0900 Subject: [PATCH] Update for release 1.9.1 (#1622) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ### Summary ### How to test ### Checklist - [ ] I have added unit tests to cover my changes.​ - [ ] I have added integration tests to cover my changes.​ - [ ] I have added the description of my changes into [CHANGELOG](https://github.com/openvinotoolkit/datumaro/blob/develop/CHANGELOG.md).​ - [ ] I have updated the [documentation](https://github.com/openvinotoolkit/datumaro/tree/develop/docs) accordingly ### License - [ ] I submit _my code changes_ under the same [MIT License](https://github.com/openvinotoolkit/datumaro/blob/develop/LICENSE) that covers the project. Feel free to contact the maintainers if that's a concern. - [ ] I have updated the license header for each file (see an example below). ```python # Copyright (C) 2024 Intel Corporation # # SPDX-License-Identifier: MIT ``` --- CHANGELOG.md | 2 -- docs/source/docs/release_notes.rst | 12 ++++++++++++ src/datumaro/version.py | 2 +- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0748fcb0d1..e6fb77f711 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## \[Q4 2024 Release 1.9.1\] -### New features - ### Enhancements - Support multiple labels for kaggle format () diff --git a/docs/source/docs/release_notes.rst b/docs/source/docs/release_notes.rst index cf9cdb0309..3437ab51b2 100644 --- a/docs/source/docs/release_notes.rst +++ b/docs/source/docs/release_notes.rst @@ -4,6 +4,18 @@ Release Notes .. toctree:: :maxdepth: 1 +v1.9.1 (2024 Q3) +---------------- + +Enhancements +^^^^^^^^^^^^ +- Support multiple labels for kaggle format +- Use DataFrame.map instead of DataFrame.applymap + +Bug fixes +^^^^^^^^^ +- Fix StreamDataset merging when importing in eager mode + v1.9.0 (2024 Q3) ---------------- diff --git a/src/datumaro/version.py b/src/datumaro/version.py index 58e7e52d78..38cf6dbeb5 100644 --- a/src/datumaro/version.py +++ b/src/datumaro/version.py @@ -1 +1 @@ -__version__ = "1.9.1rc0" +__version__ = "1.9.1"