Skip to content

Commit ebdfc6c

Browse files
authored
Update for release 1.4 (#1106)
* update changelog & release note
1 parent 6a612ef commit ebdfc6c

File tree

4 files changed

+59
-28
lines changed

4 files changed

+59
-28
lines changed

.github/workflows/pr_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
python -m pip install tox
5050
- name: Unit testing
5151
run: |
52-
tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} -- tests/unit --cov
52+
tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} --develop -- tests/unit --cov --cov-report=xml
5353
- name: Integration testing
5454
run: |
5555
tox -e tests-py${{ matrix.tox-env-py }}-${{ matrix.tox-env-os }} -- tests/integration

CHANGELOG.md

Lines changed: 15 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,35 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## \[Unreleased\]
99

10-
## 18/07/2023 - Release 1.4.0rc3
11-
12-
### Enhancements
13-
- Support list query for explorer
14-
(<https://github.com/openvinotoolkit/datumaro/pull/1087>)
15-
- update contributing.md
16-
(<https://github.com/openvinotoolkit/datumaro/pull/1094>)
17-
- Update 3rd-party.txt for release 1.4.0
18-
(<https://github.com/openvinotoolkit/datumaro/pull/1099>)
19-
20-
## 11/07/2023 - Release 1.4.0rc2
10+
## 21/07/2023 - Release 1.4.0
2111
### New features
2212
- Add documentation and notebook example for Prune API
2313
(<https://github.com/openvinotoolkit/datumaro/pull/1070>)
24-
25-
### Enhancements
26-
- Give notice that the deprecation works will be done in datumaro==1.5.0
27-
(<https://github.com/openvinotoolkit/datumaro/pull/1085>)
28-
- Unify COCO, Datumaro, VOC, YOLO importer/exporter progress reporter descriptions
29-
(<https://github.com/openvinotoolkit/datumaro/pull/1100>)
30-
31-
### Bug fixes
32-
- Create cache dir under only writable filesystem
33-
(<https://github.com/openvinotoolkit/datumaro/pull/1088>)
34-
- Fix: Dataset infos() can be broken if a transform not redefining infos() is stacked on the top
35-
(<https://github.com/openvinotoolkit/datumaro/pull/1101>)
36-
37-
## 07/07/2023 - Release 1.4.0rc1
38-
### New features
3914
- Changed supported Python version range (>=3.8, <=3.11)
4015
(<https://github.com/openvinotoolkit/datumaro/pull/1083>)
4116
- Migrate OpenVINO v2023.0.0
@@ -58,6 +33,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5833
(<https://github.com/openvinotoolkit/datumaro/pull/1078>)
5934

6035
### Enhancements
36+
- Support list query for explorer
37+
(<https://github.com/openvinotoolkit/datumaro/pull/1087>)
38+
- update contributing.md
39+
(<https://github.com/openvinotoolkit/datumaro/pull/1094>)
40+
- Update 3rd-party.txt for release 1.4.0
41+
(<https://github.com/openvinotoolkit/datumaro/pull/1099>)
42+
- Give notice that the deprecation works will be done in datumaro==1.5.0
43+
(<https://github.com/openvinotoolkit/datumaro/pull/1085>)
44+
- Unify COCO, Datumaro, VOC, YOLO importer/exporter progress reporter descriptions
45+
(<https://github.com/openvinotoolkit/datumaro/pull/1100>)
6146
- Enhance import performance for built-in plugins
6247
(<https://github.com/openvinotoolkit/datumaro/pull/1031>)
6348
- Change default dtype of load_image() to np.uint8
@@ -76,6 +61,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7661
(<https://github.com/openvinotoolkit/datumaro/pull/1073>)
7762

7863
### Bug fixes
64+
- Create cache dir under only writable filesystem
65+
(<https://github.com/openvinotoolkit/datumaro/pull/1088>)
66+
- Fix: Dataset infos() can be broken if a transform not redefining infos() is stacked on the top
67+
(<https://github.com/openvinotoolkit/datumaro/pull/1101>)
7968
- Fix warnings in test_visualizer.py
8069
(<https://github.com/openvinotoolkit/datumaro/pull/1039>)
8170
- Fix LabelMe data format

docs/source/docs/release_notes.rst

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,48 @@ Release Notes
44
.. toctree::
55
:maxdepth: 1
66

7+
v1.4.0 (2023.07)
8+
----------------
9+
10+
New features
11+
^^^^^^^^^^^^
12+
- Add documentation and notebook example for Prune API
13+
- Changed supported Python version range (>=3.8, <=3.11)
14+
- Migrate OpenVINO v2023.0.0
15+
- Add Roboflow data format support (COCO JSON, Pascal VOC XML, YOLOv5-PyTorch, YOLOv7-PyTorch, YOLOv8, YOLOv5 Oriented Bounding Boxes, Multiclass CSV, TFRecord, CreateML JSON)
16+
- Add MissingAnnotationDetection transform
17+
- Add OVMSLauncher
18+
- Add Prune API
19+
- Add TritonLauncher
20+
- Migrate DVC v3.0.0
21+
- Stream dataset import/export
22+
- Support mask annotations for CVAT data format
23+
24+
Enhancements
25+
^^^^^^^^^^^^
26+
- Support list query for explorer
27+
- update contributing.md
28+
- Update 3rd-party.txt for release 1.4.0
29+
- Give notice that the deprecation works will be done in datumaro==1.5.0
30+
- Unify COCO, Datumaro, VOC, YOLO importer/exporter progress reporter descriptions
31+
- Enhance import performance for built-in plugins
32+
- Change default dtype of load_image() to np.uint8
33+
- Add OTX ATSS detector model interpreter & refactor interfaces
34+
- Refactor Launcher and ModelInterpreter
35+
- Add CVAT data format document
36+
- Reduce peak memory usage when importing COCO and Datumaro formats
37+
- Enhance the error message for datum stats to be more user friendly
38+
- Refactor dataset.py to seperate DatasetStorage
39+
40+
Bug fixes
41+
^^^^^^^^^
42+
- Create cache dir under only writable filesystem
43+
- Fix: Dataset infos() can be broken if a transform not redefining infos() is stacked on the top
44+
- Fix warnings in test_visualizer.py
45+
- Fix LabelMe data format
46+
- Prevent installing protobuf>=4
47+
- Fix UnionMerge
48+
749
v1.3.2 (2023.06)
850
----------------
951

src/datumaro/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.4.0rc3"
1+
__version__ = "1.4.0rc4"

0 commit comments

Comments
 (0)