Skip to content

Commit 79ce99a

Browse files
committed
Updated the version of release: v2.2.0
1 parent 6464069 commit 79ce99a

File tree

3 files changed

+7
-16
lines changed

3 files changed

+7
-16
lines changed

CHANGELOG.md

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

8-
## \[2.2.0] - Unreleased
8+
## \[2.2.0] - 2022-09-12
99
### Added
1010
- Added ability to delete frames from a job based on (<https://github.com/openvinotoolkit/cvat/pull/4194>)
1111
- Support of attributes returned by serverless functions based on (<https://github.com/openvinotoolkit/cvat/pull/4506>)
@@ -39,12 +39,6 @@ Skeleton (<https://github.com/cvat-ai/cvat/pull/1>), (<https://github.com/opencv
3939
- Removed link to OpenVINO documentation (<https://github.com/cvat-ai/cvat/pull/35>)
4040
- Clarified meaning of chunking for videos
4141

42-
### Deprecated
43-
- TDB
44-
45-
### Removed
46-
- TDB
47-
4842
### Fixed
4943
- Task creation progressbar bug
5044
- Removed Python dependency ``open3d`` which brought different issues to the building process
@@ -64,9 +58,6 @@ Skeleton (<https://github.com/cvat-ai/cvat/pull/1>), (<https://github.com/opencv
6458
- Removing label attributes (<https://github.com/opencv/cvat/pull/4927>)
6559
- Notification with a required manifest file (<https://github.com/opencv/cvat/pull/4921>)
6660

67-
### Security
68-
- TDB
69-
7061
## \[2.1.0] - 2022-04-08
7162
### Added
7263
- Task annotations importing via chunk uploads (<https://github.com/openvinotoolkit/cvat/pull/4327>)

cvat/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
from cvat.utils.version import get_version
66

7-
VERSION = (2, 2, 0, 'alpha', 0)
7+
VERSION = (2, 2, 0, 'final', 0)
88

99
__version__ = get_version(VERSION)

docker-compose.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727

2828
cvat_server:
2929
container_name: cvat_server
30-
image: cvat/server:${CVAT_VERSION:-dev}
30+
image: cvat/server:${CVAT_VERSION:-v2.2.0}
3131
restart: always
3232
depends_on:
3333
- cvat_redis
@@ -57,7 +57,7 @@ services:
5757

5858
cvat_utils:
5959
container_name: cvat_utils
60-
image: cvat/server:${CVAT_VERSION:-dev}
60+
image: cvat/server:${CVAT_VERSION:-v2.2.0}
6161
restart: always
6262
depends_on:
6363
- cvat_redis
@@ -77,7 +77,7 @@ services:
7777

7878
cvat_worker_default:
7979
container_name: cvat_worker_default
80-
image: cvat/server:${CVAT_VERSION:-dev}
80+
image: cvat/server:${CVAT_VERSION:-v2.2.0}
8181
restart: always
8282
depends_on:
8383
- cvat_redis
@@ -98,7 +98,7 @@ services:
9898

9999
cvat_worker_low:
100100
container_name: cvat_worker_low
101-
image: cvat/server:${CVAT_VERSION:-dev}
101+
image: cvat/server:${CVAT_VERSION:-v2.2.0}
102102
restart: always
103103
depends_on:
104104
- cvat_redis
@@ -119,7 +119,7 @@ services:
119119

120120
cvat_ui:
121121
container_name: cvat_ui
122-
image: cvat/ui:${CVAT_VERSION:-dev}
122+
image: cvat/ui:${CVAT_VERSION:-v2.2.0}
123123
restart: always
124124
depends_on:
125125
- cvat_server

0 commit comments

Comments
 (0)