Release 21.0.1

This commit is contained in:
Aloïs Micard
2025-04-09 11:16:10 +02:00
parent 84b04ebe5f
commit c1fe0435e3
5 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ jobs:
build-docker-images:
strategy:
matrix:
dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.6, 19.0.4, 20.0.4, 21.0.0, develop ]
dolibarr_version: [ 15.0.3, 16.0.5, 17.0.4, 18.0.6, 19.0.4, 20.0.4, 21.0.1, develop ]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3

View File

@@ -9,7 +9,7 @@ FROM ${ARCH}php:8.2-apache-bullseye
# 2024 Laurent Destailleur
LABEL maintainer="The Dolibarr foundation <contact@dolibarr.org>"
ENV DOLI_VERSION=21.0.0
ENV DOLI_VERSION=21.0.1
ENV DOLI_VERSION_FOR_INIT_DEMO=21.0
ENV DOLI_INSTALL_AUTO=1
ENV DOLI_PROD=1

View File

@@ -3,10 +3,10 @@
set -e
# The list of version to build docker packages for
DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.6" "19.0.4" "20.0.4" "21.0.0" "develop")
DOLIBARR_VERSIONS=("15.0.3" "16.0.5" "17.0.4" "18.0.6" "19.0.4" "20.0.4" "21.0.1" "develop")
# The version to use when installing dolibarr/dolibarr:latest
DOLIBARR_LATEST_TAG="21.0.0"
DOLIBARR_LATEST_TAG="21.0.1"
# The version to use to find the dump file for the init of demo with branch "develop"
DOLIBARR_VERSION_FOR_INIT_DEMO="21.0"