Skip to content

Commit

Permalink
Release v2.0.15
Browse files Browse the repository at this point in the history
- Django v2.0.1
- New OCR model
- TA now find text strips reliably
- Hotfix for gamera
- Network call reduction
- UI updates
- Docker tag automation
- Update MEI encoding v5
- Fix GPU container's dependency
- Enable email login and notification
- Register jobs in YAML file
  • Loading branch information
softcat477 committed Jul 19, 2023
1 parent 4cdcd8d commit b9e74eb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ REPLACE := perl -i -pe
RODAN_PATH := ./rodan-main/code/rodan
JOBS_PATH := $(RODAN_PATH)/jobs

PROD_TAG := v2.0.14
PROD_TAG := v2.0.15

DOCKER_TAG := nightly

Expand Down
14 changes: 7 additions & 7 deletions production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: "3.4"
services:

nginx:
image: "ddmal/nginx:v2.0.14"
image: "ddmal/nginx:v2.0.15"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -38,7 +38,7 @@ services:
- "certbot:/etc/letsencrypt"

rodan-main:
image: "ddmal/rodan-main:v2.0.14"
image: "ddmal/rodan-main:v2.0.15"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -74,7 +74,7 @@ services:
- "resources:/rodan/data"

celery:
image: "ddmal/rodan-main:v2.0.14"
image: "ddmal/rodan-main:v2.0.15"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -105,7 +105,7 @@ services:
- "resources:/rodan/data"

py3-celery:
image: "ddmal/rodan-python3-celery:v2.0.14"
image: "ddmal/rodan-python3-celery:v2.0.15"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -136,7 +136,7 @@ services:
- "resources:/rodan/data"

gpu-celery:
image: "ddmal/rodan-gpu-celery:v2.0.14"
image: "ddmal/rodan-gpu-celery:v2.0.15"
deploy:
replicas: 1
resources:
Expand Down Expand Up @@ -192,7 +192,7 @@ services:
TZ: America/Toronto

postgres:
image: "ddmal/postgres-plpython:v2.0.14"
image: "ddmal/postgres-plpython:v2.0.15"
deploy:
replicas: 1
endpoint_mode: dnsrr
Expand Down Expand Up @@ -246,7 +246,7 @@ services:
- ./scripts/production.env

hpc-rabbitmq:
image: "ddmal/hpc-rabbitmq:v2.0.14"
image: "ddmal/hpc-rabbitmq:v2.0.15"
deploy:
replicas: 1
resources:
Expand Down
2 changes: 1 addition & 1 deletion rodan-main/code/rodan/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Get version: import rodan; rodan.__version__
# Version numbers also appear in the API.
__title__ = "Rodan"
__version__ = "v2.0.14"
__version__ = "v2.0.15"
__copyright__ = "Copyright 2011-2022 Distributed Digital Music Archives & Libraries Lab"
# If changing this line, also change rodan-main/Dockerfile
__build_hash__ = "local"

0 comments on commit b9e74eb

Please sign in to comment.