From d1a4cfb70e25693c7858e5948ce83b631ff26f36 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Wed, 31 Mar 2021 23:25:44 +0300 Subject: [PATCH] Updated CHANGELOG.md and the server version. --- CHANGELOG.md | 28 ++++++++-------------------- cvat/__init__.py | 2 +- 2 files changed, 9 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index adc19587..48129323 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). -## [1.3.0-alpha] - Unreleased +## [1.3.0] - 3/31/2021 ### Added @@ -16,8 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 () - Intelligent scissors with OpenCV javascript () - CVAT-3D: Visualize 3D point cloud spaces in 3D View, Top View Side View and Front View () -- [Inside Outside Guidence](https://github.com/shiyinzhang/Inside-Outside-Guidance) serverless - function for interative segmentation +- [Inside Outside Guidance](https://github.com/shiyinzhang/Inside-Outside-Guidance) serverless + function for interactive segmentation - Pre-built [cvat_server](https://hub.docker.com/r/openvino/cvat_server) and [cvat_ui](https://hub.docker.com/r/openvino/cvat_ui) images were published on DockerHub () - Project task subsets () @@ -33,7 +33,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Annotations filters UI using react-awesome-query-builder (https://github.com/openvinotoolkit/cvat/issues/1418) - Storing settings in local storage to keep them between browser sessions () - [ICDAR](https://rrc.cvc.uab.es/?ch=2) format support () -- Added switcher to maintain poylgon crop behaviour ( +- Added switcher to maintain polygon crop behavior ( - Filters and sorting options for job list, added tooltip for tasks filters () ### Changed @@ -42,22 +42,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated HTTPS install README section (cleanup and described more robust deploy) - Logstash is improved for using with configurable elasticsearch outputs () - Bumped nuclio version to 1.5.16 () -- All methods for interative segmentation accept negative points as well +- All methods for interactive segmentation accept negative points as well - Persistent queue added to logstash () -- Improved maintanance of popups visibility () +- Improved maintenance of popups visibility () - Image visualizations settings on canvas for faster access () - Better scale management of left panel when screen is too small () - Improved error messages for annotation import () - Using manifest support instead video meta information and dummy chunks () -### Deprecated - -- - -### Removed - -- - ### Fixed - More robust execution of nuclio GPU functions by limiting the GPU memory consumption per worker () @@ -65,12 +57,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - The cursor jumps to the end of the line when renaming a task () - SSLCertVerificationError when remote source is used () - Fixed filters select overflow () -- Fixed tasks in project autoannotation () +- Fixed tasks in project auto annotation () - Cuboids are missed in annotations statistics () - The list of files attached to the task is not displayed () - Issue with point region doesn't work in Firefox () -- Fixed cuboid perpective change () +- Fixed cuboid perspective change () - Annotation page popups (ai tools, drawing) reset state after detecting, tracking, drawing () - Polygon editing using trailing point () - Updated the path to python for DL models inside automatic annotation documentation () @@ -86,10 +78,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updating label attributes when label contains number attributes () - Crop a polygon if its points are outside the bounds of the image () -### Security - -- - ## [1.2.0] - 2021-01-08 ### Fixed diff --git a/cvat/__init__.py b/cvat/__init__.py index 7038e6ec..f92ffbfe 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -4,6 +4,6 @@ from cvat.utils.version import get_version -VERSION = (1, 3, 0, 'alpha', 0) +VERSION = (1, 3, 0, 'final', 0) __version__ = get_version(VERSION)