From 277e1428f4bf837f4d0434c987d55e8679658502 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Mon, 2 Aug 2021 15:18:31 +0300 Subject: [PATCH 1/2] Updated CHANGELOG --- CHANGELOG.md | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 29bd4392..1e24fe57 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.5.0] - Unreleased +## \[1.5.0] - 2021-08-02 ### Added @@ -22,21 +22,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Updated manifest format, added meta with related images () - Update of COCO format documentation () -- Updated Webpack Dev Server config to add proxxy () +- Updated Webpack Dev Server config to add proxy () - Update to Django 3.1.12 () - Updated visibility for removable points in AI tools () - Updated UI handling for IOG serverless function () - Changed Nginx proxy to Traefik in `docker-compose.yml` () - Simplify the process of deploying CVAT with HTTPS () -### Deprecated - -- TBD - -### Removed - -- TBD - ### Fixed - Project page requests took a long time and did many DB queries () @@ -49,7 +41,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - TypeError: Cannot read property 'clientX' of undefined when draw cuboids with hotkeys () - Duplication of the cuboids when redraw them () - Some code issues in Deep Extreme Cut handler code () -- UI fails when inactive user is assigneed to a task/job () +- UI fails when inactive user is assigned to a task/job () - Calculate precise progress of decoding a video file () - Falsely successful `cvat_ui` image build in case of OOM error that leads to the default nginx welcome page () @@ -58,10 +50,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Using combined data sources (directory and image) when create a task () - Creating task with labels in project () -### Security - -- TBD - ## \[1.4.0] - 2021-05-18 ### Added From be3240e85d65b911d9507cb1156b0ceab0a77a89 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Mon, 2 Aug 2021 15:20:22 +0300 Subject: [PATCH 2/2] Changed version of CVAT to 1.5.0 --- cvat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cvat/__init__.py b/cvat/__init__.py index de9048d0..52ec08c4 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -4,6 +4,6 @@ from cvat.utils.version import get_version -VERSION = (1, 5, 0, 'alpha', 0) +VERSION = (1, 5, 0, 'final', 0) __version__ = get_version(VERSION)