Skip to content

Release v2.2.0 #4936

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 1 addition & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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>)
Expand Down Expand Up @@ -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
Expand All @@ -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>)
Expand Down
2 changes: 1 addition & 1 deletion cvat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down