Skip to content

Commit bdecc41

Browse files
author
Nikita Manovich
committed
Merge branch 'master' into release-0.6.0
2 parents 24130cd + 42aad8b commit bdecc41

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [1.0.0.alpha] - 2020-02-XX
7+
## [0.6.0] - 2020-02-15
88
### Added
99
- Server only support for projects. Extend REST API v1 (/api/v1/projects*)
1010
- Ability to get basic information about users without admin permissions ([#750](https://github.com/opencv/cvat/issues/750))
@@ -28,12 +28,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2828
- Yolov3 interpretation script fix and changes to mapping.json
2929
- YOLO format support ([#1151](https://github.com/opencv/cvat/pull/1151))
3030

31-
### Deprecated
32-
-
33-
34-
### Removed
35-
-
36-
3731
### Fixed
3832
- Exception in Git plugin [#826](https://github.com/opencv/cvat/issues/826)
3933
- Label ids in TFrecord format now start from 1 [#866](https://github.com/opencv/cvat/issues/866)
@@ -42,8 +36,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4236
- Output labels for VOC format can be specified with Datumaro [#942](https://github.com/opencv/cvat/issues/942)
4337
- Annotations can be filtered before dumping with Datumaro [#994](https://github.com/opencv/cvat/issues/994)
4438

45-
### Security
46-
-
39+
## [0.5.2] - 2019-12-15
40+
### Fixed
41+
- Frozen version of scikit-image==0.15 in requirements.txt because next releases don't support Python 3.5
4742

4843
## [0.5.1] - 2019-10-17
4944
### Added

cvat/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
2-
# Copyright (C) 2018 Intel Corporation
1+
# Copyright (C) 2018-2020 Intel Corporation
32
#
43
# SPDX-License-Identifier: MIT
54

65
from cvat.utils.version import get_version
76

8-
VERSION = (0, 6, 0, 'alpha', 0)
7+
VERSION = (0, 6, 0, 'final', 0)
98

109
__version__ = get_version(VERSION)

0 commit comments

Comments
 (0)