Skip to content

Commit

Permalink
v2.4.0.alpha (#5508)
Browse files Browse the repository at this point in the history
Co-authored-by: Maxim Zhiltsov <[email protected]>
Co-authored-by: Kirill Sizov <[email protected]>
  • Loading branch information
3 people authored Dec 26, 2022
1 parent a773042 commit 2071167
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 13 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ on:

env:
CYPRESS_VERIFY_TIMEOUT: 180000 # https://docs.cypress.io/guides/guides/command-line#cypress-verify
CVAT_VERSION: "local"

jobs:
search_cache:
Expand Down Expand Up @@ -158,8 +159,8 @@ jobs:
run: |
docker load --input /tmp/cvat_server/image.tar
docker load --input /tmp/cvat_ui/image.tar
docker tag cvat/server:latest cvat/server:dev
docker tag cvat/ui:latest cvat/ui:dev
docker tag cvat/server:latest cvat/server:${CVAT_VERSION}
docker tag cvat/ui:latest cvat/ui:${CVAT_VERSION}
docker image ls -a
- name: Running REST API and SDK tests
Expand Down Expand Up @@ -204,7 +205,7 @@ jobs:
- name: Load Docker server image
run: |
docker load --input /tmp/cvat_server/image.tar
docker tag cvat/server:latest cvat/server:dev
docker tag cvat/server:latest cvat/server:${CVAT_VERSION}
docker image ls -a
- name: Running OPA tests
Expand Down Expand Up @@ -285,8 +286,8 @@ jobs:
run: |
docker load --input /tmp/cvat_server/image.tar
docker load --input /tmp/cvat_ui/image.tar
docker tag cvat/server:latest cvat/server:dev
docker tag cvat/ui:latest cvat/ui:dev
docker tag cvat/server:latest cvat/server:${CVAT_VERSION}
docker tag cvat/ui:latest cvat/ui:${CVAT_VERSION}
docker image ls -a
- name: Run CVAT instance
Expand Down
27 changes: 20 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,26 @@ 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.3.0] - Unreleased
## \[2.4.0] - Unreleased
### Added
- TDB

### Changed
- TDB

### Deprecated
- TDB

### Removed
- TDB

### Fixed
- TDB

### Security
- TDB

## \[2.3.0] - 2022-12-22
### Added
- SDK section in docs (<https://github.com/opencv/cvat/pull/4928>)
- An option to enable or disable host certificate checking in CLI (<https://github.com/opencv/cvat/pull/4928>)
Expand Down Expand Up @@ -37,9 +56,6 @@ from online detectors & interactors) (<https://github.com/opencv/cvat/pull/4543>
- In the SDK, functions taking paths as strings now also accept path-like objects
(<https://github.com/opencv/cvat/pull/5435>)

### Deprecated
- TDB

### Removed
- The `--https` option of CLI (<https://github.com/opencv/cvat/pull/4910>)

Expand Down Expand Up @@ -107,9 +123,6 @@ non-ascii paths while adding files from "Connected file share" (issue #4428)
- `Project.import_dataset` not waiting for completion correctly
(<https://github.com/opencv/cvat/pull/5459>)

### Security
- TDB

## \[2.2.0] - 2022-09-12
### Added
- Added ability to delete frames from a job based on (<https://github.com/openvinotoolkit/cvat/pull/4194>)
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, 3, 0, 'alpha', 0)
VERSION = (2, 4, 0, 'alpha', 0)

__version__ = get_version(VERSION)

0 comments on commit 2071167

Please sign in to comment.