Updated the version of release: v2.2.0

main
Nikita Manovich 3 years ago
parent 6464069bfa
commit 79ce99acc5

@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
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).
## \[2.2.0] - Unreleased
## \[2.2.0] - 2022-09-12
### Added
- Added ability to delete frames from a job based on (<https://github.com/openvinotoolkit/cvat/pull/4194>)
- 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
- Removed link to OpenVINO documentation (<https://github.com/cvat-ai/cvat/pull/35>)
- Clarified meaning of chunking for videos
### Deprecated
- TDB
### Removed
- TDB
### Fixed
- Task creation progressbar bug
- 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
- Removing label attributes (<https://github.com/opencv/cvat/pull/4927>)
- Notification with a required manifest file (<https://github.com/opencv/cvat/pull/4921>)
### Security
- TDB
## \[2.1.0] - 2022-04-08
### Added
- Task annotations importing via chunk uploads (<https://github.com/openvinotoolkit/cvat/pull/4327>)

@ -4,6 +4,6 @@
from cvat.utils.version import get_version
VERSION = (2, 2, 0, 'alpha', 0)
VERSION = (2, 2, 0, 'final', 0)
__version__ = get_version(VERSION)

@ -27,7 +27,7 @@ services:
cvat_server:
container_name: cvat_server
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.2.0}
restart: always
depends_on:
- cvat_redis
@ -57,7 +57,7 @@ services:
cvat_utils:
container_name: cvat_utils
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.2.0}
restart: always
depends_on:
- cvat_redis
@ -77,7 +77,7 @@ services:
cvat_worker_default:
container_name: cvat_worker_default
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.2.0}
restart: always
depends_on:
- cvat_redis
@ -98,7 +98,7 @@ services:
cvat_worker_low:
container_name: cvat_worker_low
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.2.0}
restart: always
depends_on:
- cvat_redis
@ -119,7 +119,7 @@ services:
cvat_ui:
container_name: cvat_ui
image: cvat/ui:${CVAT_VERSION:-dev}
image: cvat/ui:${CVAT_VERSION:-v2.2.0}
restart: always
depends_on:
- cvat_server

Loading…
Cancel
Save