diff --git a/CHANGELOG.md b/CHANGELOG.md index 10bb3ed27b4cb07a671a595936ae346ca129ab02..1de8d41180a4c94faba119a83f00226b8e6d8c51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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 +### Added +- TDB + +### Changed +- TDB + +### Deprecated +- TDB + +### Removed +- TDB + +### Fixed +- TDB + +### Security +- TDB + ## \[2.1.0] - 2022-04-08 ### Added - Task annotations importing via chunk uploads () @@ -17,12 +36,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Improved helm chart readme () - Added helm chart support for CVAT 2.X and made ingress compatible with Kubernetes >=1.22 () -### Deprecated -- TDB - -### Removed -- TDB - ### Fixed - Permission error occured when accessing the JobCommits () - job assignee can remove or update any issue created by the task owner () @@ -32,9 +45,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix build dependencies for Siammask () - Bug: Exif orientation information handled incorrectly () -### Security -- TDB - ## \[2.0.0] - 2022-03-04 ### Added - Handle attributes coming from nuclio detectors () diff --git a/cvat/__init__.py b/cvat/__init__.py index 5b371dbfeaa4f810dd2008bea91261575ba57f3d..bb33998df52d232ca7d25b31d06ce873d2ea1d27 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -4,6 +4,6 @@ from cvat.utils.version import get_version -VERSION = (2, 1, 0, 'final', 0) +VERSION = (2, 2, 0, 'alpha', 0) __version__ = get_version(VERSION)