From 76280be4ad4c6143533b6a3960a429d33e7f10a8 Mon Sep 17 00:00:00 2001 From: Nikita Manovich Date: Wed, 1 Jul 2020 21:45:27 +0300 Subject: [PATCH] Add v1.1.0-beta into changelog and update the server version. --- CHANGELOG.md | 19 +++++++++++++++++++ cvat/__init__.py | 2 +- 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fb91448..7c63a6c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,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). +## [1.1.0-beta] - Unreleased +### Added +- + +### Changed +- + +### Deprecated +- + +### Removed +- + +### Fixed +- + +### Security +- + ## [1.1.0-alpha] - 2020-06-30 ### Added - Throttling policy for unauthenticated users () diff --git a/cvat/__init__.py b/cvat/__init__.py index 375b5b86..e9d49047 100644 --- a/cvat/__init__.py +++ b/cvat/__init__.py @@ -4,6 +4,6 @@ from cvat.utils.version import get_version -VERSION = (1, 1, 0, 'alpha', 0) +VERSION = (1, 1, 0, 'beta', 0) __version__ = get_version(VERSION)