Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
azhavoro committed Mar 15, 2023
1 parent 7c8f4f0 commit 86c9da3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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).

## \[2.4.0] - Unreleased
## \[2.4.0] - 2023-03-16
### Added
- \[SDK\] An arg to wait for data processing in the task data uploading function
(<https://github.com/opencv/cvat/pull/5502>)
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, 4, 0, 'alpha', 0)
VERSION = (2, 4, 0, 'final', 0)

__version__ = get_version(VERSION)
14 changes: 7 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ services:

cvat_server:
container_name: cvat_server
image: cvat/server:${CVAT_VERSION:-v2.3.0}
image: cvat/server:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_redis
Expand Down Expand Up @@ -63,7 +63,7 @@ services:

cvat_utils:
container_name: cvat_utils
image: cvat/server:${CVAT_VERSION:-v2.3.0}
image: cvat/server:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -84,7 +84,7 @@ services:

cvat_worker_import:
container_name: cvat_worker_import
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -106,7 +106,7 @@ services:

cvat_worker_export:
container_name: cvat_worker_export
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -127,7 +127,7 @@ services:

cvat_worker_annotation:
container_name: cvat_worker_annotation
image: cvat/server:${CVAT_VERSION:-dev}
image: cvat/server:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -148,7 +148,7 @@ services:

cvat_worker_webhooks:
container_name: cvat_worker_webhooks
image: cvat/server:${CVAT_VERSION:-v2.3.0}
image: cvat/server:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_redis
Expand All @@ -169,7 +169,7 @@ services:

cvat_ui:
container_name: cvat_ui
image: cvat/ui:${CVAT_VERSION:-v2.3.0}
image: cvat/ui:${CVAT_VERSION:-v2.4.0}
restart: always
depends_on:
- cvat_server
Expand Down
4 changes: 2 additions & 2 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ cvat:
additionalVolumeMounts: []
replicas: 1
image: cvat/server
tag: dev
tag: v2.4.0
imagePullPolicy: Always
permissionFix:
enabled: true
Expand All @@ -95,7 +95,7 @@ cvat:
frontend:
replicas: 1
image: cvat/ui
tag: dev
tag: v2.4.0
imagePullPolicy: Always
labels: {}
# test: test
Expand Down

0 comments on commit 86c9da3

Please sign in to comment.