From 79ce99acc59e8558d9a7589c41050a258dd3c909 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Mon, 12 Sep 2022 22:24:51 +0300 Subject: [PATCH] Updated the version of release: v2.2.0 --- CHANGELOG.md | 11 +---------- cvat/__init__.py | 2 +- docker-compose.yml | 10 +++++----- 3 files changed, 7 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ee328957..f04d6888 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 () - Support of attributes returned by serverless functions based on () @@ -39,12 +39,6 @@ Skeleton (), () - 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 (), () - Notification with a required manifest file () -### Security -- TDB - ## \[2.1.0] - 2022-04-08 ### Added - Task annotations importing via chunk uploads () diff --git a/cvat/__init__.py b/cvat/__init__.py index 62255fd1..dd6c7ffc 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -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) diff --git a/docker-compose.yml b/docker-compose.yml index de616828..9c94a814 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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