From 3b074896fbdfbe30a0726afc855ab1b9322c98a8 Mon Sep 17 00:00:00 2001 From: Hanwen Zh <70364944+homework36@users.noreply.github.com> Date: Wed, 16 Jul 2025 09:47:22 -0400 Subject: [PATCH] update prod ver from v3.2.0 to v3.3.0 Release v3.3.0 Fix - Now support optional RGB Image input and output in `Column Split` job - `MEI Encoding` job is now able to encode a variable number of lines, rather than hard coded 4, with a temporary fix for pitch errors due to a different number of lines than 4 by adjusting the clef position - [frontend] Workflow job position x offset after reload - [frontend] Hide dropdown menus on click away - [frontend] Tab & navigation status Add - `Aquitanian Ref Line Finding` job - [frontend] Delete confirm window for workflow (in addition to project) Update - Nginx Dockerfile with Debian archive - Use DDMAL forked version of `Calamri` for `Text Alignment` job --- Makefile | 2 +- production.yml | 12 ++++++------ rodan-main/code/rodan/__init__.py | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Makefile b/Makefile index d0e1137e7..e564bee1a 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ REPLACE := perl -i -pe RODAN_PATH := ./rodan-main/code/rodan JOBS_PATH := $(RODAN_PATH)/jobs -PROD_TAG := v3.2.0 +PROD_TAG := v3.3.0 DOCKER_TAG := nightly diff --git a/production.yml b/production.yml index 403e51bc5..bbc6dbd71 100644 --- a/production.yml +++ b/production.yml @@ -3,7 +3,7 @@ version: "3.4" services: nginx: - image: "ddmal/nginx:v3.2.0" + image: "ddmal/nginx:v3.3.0" deploy: replicas: 1 resources: @@ -37,7 +37,7 @@ services: - "resources:/rodan/data" rodan-main: - image: "ddmal/rodan-main:v3.2.0" + image: "ddmal/rodan-main:v3.3.0" deploy: replicas: 1 resources: @@ -78,7 +78,7 @@ services: - "resources:/rodan/data" celery: - image: "ddmal/rodan-main:v3.2.0" + image: "ddmal/rodan-main:v3.3.0" deploy: replicas: 1 resources: @@ -109,7 +109,7 @@ services: - "resources:/rodan/data" py3-celery: - image: "ddmal/rodan-python3-celery:v3.2.0" + image: "ddmal/rodan-python3-celery:v3.3.0" deploy: replicas: 1 resources: @@ -139,7 +139,7 @@ services: - "resources:/rodan/data" gpu-celery: - image: "ddmal/rodan-gpu-celery:v3.2.0" + image: "ddmal/rodan-gpu-celery:v3.3.0" deploy: replicas: 1 resources: @@ -195,7 +195,7 @@ services: TZ: America/Toronto postgres: - image: "ddmal/postgres-plpython:v3.2.0" + image: "ddmal/postgres-plpython:v3.3.0" deploy: replicas: 1 endpoint_mode: dnsrr diff --git a/rodan-main/code/rodan/__init__.py b/rodan-main/code/rodan/__init__.py index f0f12b45a..32e7e1b2f 100644 --- a/rodan-main/code/rodan/__init__.py +++ b/rodan-main/code/rodan/__init__.py @@ -17,7 +17,7 @@ # Get version: import rodan; rodan.__version__ # Version numbers also appear in the API. __title__ = "Rodan" -__version__ = "v3.2.0" +__version__ = "v3.3.0" __copyright__ = "Copyright 2011-2022 Distributed Digital Music Archives & Libraries Lab" # If changing this line, also change rodan-main/Dockerfile __build_hash__ = "local"