From fbb05f8dee18b1c85e0df3decab77d01cb83d630 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Thu, 8 Feb 2024 22:26:13 +0400 Subject: [PATCH 01/11] support des versions AMUE --- lib/ulib/base | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/lib/ulib/base b/lib/ulib/base index 47bd9b8..d91fe48 100644 --- a/lib/ulib/base +++ b/lib/ulib/base @@ -1424,7 +1424,7 @@ function is_archive() { name="${name%.jar}" name="${name%.war}" name="${name%.ear}" - [ "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && name="${name%.sh}" + [ -n "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && name="${name%.sh}" [ "$name" != "$1" ] } function extract_archive() { @@ -1446,7 +1446,7 @@ function extract_archive() { cd "$destdir" jar xf "$arch" "$@" ) || return - elif [ "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && endswith "$arch" .sh; then + elif [ -n "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && endswith "$arch" .sh; then ( arch="$(abspath "$arch")" cd "$destdir" @@ -1469,7 +1469,7 @@ function get_archive_basename() { basename="${basename%.jar}" basename="${basename%.war}" basename="${basename%.ear}" - [ "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && basename="${basename%.sh}" + [ -n "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && basename="${basename%.sh}" # résultat echo "$basename" } @@ -1489,10 +1489,13 @@ function get_archive_appname() { appname="${appname%.jar}" appname="${appname%.war}" appname="${appname%.ear}" - [ "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && appname="${appname%.sh}" + [ -n "$NUTOOLS_SH_ARCHIVE_SUPPORT" ] && appname="${appname%.sh}" # supprimer la version et afficher echo "$appname" | awk '{ - if (match($0, /[-_.]([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/)) { + if (match($0, /-([0-9]{5}(_(VA|VSR)[0-9]+)?)$/, vs)) { + # version style AMUE, e.g 64070 ou 64070_VA1 + print substr($0, 1, RSTART - 1) + } else if (match($0, /[-_.]([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/)) { print substr($0, 1, RSTART - 1) } else if (match($0, /([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/)) { print substr($0, 1, RSTART - 1) @@ -1511,7 +1514,10 @@ function get_archive_versionsuffix() { # --> -0.1 local basename="$(get_archive_basename "$1")" echo "$basename" | awk '{ - if (match($0, /([-_.][0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/, vs)) { + if (match($0, /(-[0-9]{5}(_(VA|VSR)[0-9]+)?)$/, vs)) { + # version style AMUE, e.g 64070 ou 64070_VA1 + print vs["1"] + } else if (match($0, /([-_.][0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/, vs)) { print vs["1"] } else if (match($0, /([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/, vs)) { print vs["1"] @@ -1528,7 +1534,10 @@ function get_archive_version() { # --> 0.1 local basename="$(get_archive_basename "$1")" echo "$basename" | awk '{ - if (match($0, /[-_.]([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/, vs)) { + if (match($0, /-([0-9]{5}(_(VA|VSR)[0-9]+)?)$/, vs)) { + # version style AMUE, e.g 64070 ou 64070_VA1 + print vs["1"] + } else if (match($0, /[-_.]([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/, vs)) { print vs["1"] } else if (match($0, /([0-9]+([-_.][0-9]+)*([a-zA-Z][0-9]*|[-_.][0-9]+[a-zA-Z][0-9]*)?)$/, vs)) { print vs["1"] From 2df175ee57a8319341f4014cb05012fb61d1d1ab Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Sat, 10 Feb 2024 11:33:07 +0400 Subject: [PATCH 02/11] dkbuild: cosmetic --- dkbuild | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/dkbuild b/dkbuild index 20df4db..5bfdd04 100755 --- a/dkbuild +++ b/dkbuild @@ -2983,10 +2983,10 @@ function _build_before() { PREV_PROFILE= } function _build_each() { - if [ "$PROFILE-$PVERSION" != "$PREV_PROFILE" ]; then - [ -n "$PREV_PROFILE" ] && eend - fi if [ -n "$DIST" -a "$DIST-$DVERSION" != "$PREV_DIST" ]; then + [ -n "$PREV_PROFILE" ] && eend + PREV_PROFILE= + [ -n "$PREV_DIST" ] && eend PREV_DIST="$DIST-$DVERSION" etitle "Distribution ${DVERSION:+$DVERSION-}$DIST" @@ -3128,10 +3128,10 @@ function _dump_before() { PREV_PROFILE= } function _dump_each() { - if [ "$PROFILE-$PVERSION" != "$PREV_PROFILE" ]; then - [ -n "$PREV_PROFILE" ] && eend - fi if [ -n "$DIST" -a "$DIST-$DVERSION" != "$PREV_DIST" ]; then + [ -n "$PREV_PROFILE" ] && eend + PREV_PROFILE= + [ -n "$PREV_DIST" ] && eend PREV_DIST="$DIST-$DVERSION" etitle "Distribution ${DVERSION:+$DVERSION-}$DIST" From 30594aa84bea5e0ef45a3e0ee946aebf79fa7729 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Mon, 12 Feb 2024 11:47:01 +0400 Subject: [PATCH 03/11] maj distributions --- dkbuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dkbuild b/dkbuild index 5bfdd04..860f0a9 100755 --- a/dkbuild +++ b/dkbuild @@ -86,13 +86,16 @@ $scriptname build [OPTIONS] [BUILDVARS...] configuration ne doit être chargé. -d, --dist DIST - -9, --d9 -0, --d10 -1, --d11 + -2, --d12 + -3, --d13 --r7, --rhel7 --r8, --rhel8 + --r9, --rhel9 --o7, --oracle7 --o8, --oracle8 + --o9, --oracle9 Ne faire le build que pour la distribution spécifiée. Par défaut, faire le build pour toutes les distributions définies. Si la distribution sélectionnée n'est pas valide pour ce build, elle est ignorée @@ -936,13 +939,16 @@ SHARED_ARGS1=( SHARED_LOCALS2="local DIST PROFILE ALL_PROFILES; local -a TMPENVIRON TMPARGS" SHARED_ARGS2=( -d:,--dist: DIST= - -9,--d9 DIST=d9 -0,--d10 DIST=d10 -1,--d11 DIST=d11 + -2,--d12 DIST=d11 + -3,--d13 DIST=d11 --r7,--rhel7 DIST=rhel7 --r8,--rhel8 DIST=rhel8 + --r9,--rhel9 DIST=rhel9 --ol7,--oracle7 DIST=ol7 --ol8,--oracle8 DIST=ol8 + --ol9,--oracle9 DIST=ol9 -p:,--profile: PROFILE= -P,--prod PROFILE=prod From ce8f5415209575a69d8b13f50a39e923c3d81546 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Wed, 6 Mar 2024 22:36:49 +0400 Subject: [PATCH 04/11] dkbuild: -g pour --profile --- dkbuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dkbuild b/dkbuild index 860f0a9..8be1da9 100755 --- a/dkbuild +++ b/dkbuild @@ -100,7 +100,7 @@ $scriptname build [OPTIONS] [BUILDVARS...] le build pour toutes les distributions définies. Si la distribution sélectionnée n'est pas valide pour ce build, elle est ignorée - --profile PROFILE + -g, --profile PROFILE -P, --prod -T, --test -E, --dtest @@ -950,7 +950,7 @@ SHARED_ARGS2=( --ol8,--oracle8 DIST=ol8 --ol9,--oracle9 DIST=ol9 - -p:,--profile: PROFILE= + -g:,--profile: PROFILE= -P,--prod PROFILE=prod -T,--test PROFILE=test -E,--dtest PROFILE=dtest From e7745c2dd4c21b6057694e680c4c29edbfb64e11 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Tue, 19 Mar 2024 07:26:06 +0400 Subject: [PATCH 05/11] dk: support --plain-output --- dk | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/dk b/dk index 781dc9b..d158eee 100755 --- a/dk +++ b/dk @@ -336,6 +336,8 @@ OPTIONS build deploy, by, bpy et update impliquent --stack -j, --no-cache Ne pas utiliser le cache lors du build + --plain-output + Afficher la sortie complète des containers lors du build -U, --pull Essayer de récupérer une version plus récente de l'image source -g, --ug, --no-update-apps @@ -1245,6 +1247,7 @@ function default_compose_build() { "${replace_env_args[@]}" "${env_args[@]}" \ build \ ${NO_CACHE:+--no-cache} \ + ${PROGRESS:+--progress "$PROGRESS"} \ ${PULL:+--pull} \ "${replace_build_args[@]}" "${build_args[@]}" \ "$@" @@ -1256,6 +1259,7 @@ function default_docker_build() { done ${FAKE:+qvals} "$DOCKER" build \ ${NO_CACHE:+--no-cache} \ + ${PROGRESS:+--progress "$PROGRESS"} \ ${PULL:+--pull} \ "${replace_env_args[@]}" "${env_args[@]}" \ "${replace_build_args[@]}" "${build_args[@]}" \ @@ -1305,6 +1309,7 @@ function auto_build() { done ${FAKE:+qvals} "$DOCKER" build \ ${NO_CACHE:+--no-cache} \ + ${PROGRESS:+--progress "$PROGRESS"} \ ${PULL:+--pull} \ "${replace_build_args[@]}" "$@" fi @@ -2499,6 +2504,7 @@ FAKE= VARS=() FORCE= NO_CACHE= +PROGRESS= PULL= HOST= WITH_REGISTRY_AUTH=1 @@ -2522,6 +2528,7 @@ args=( -e:,--build-arg:,--env: VARS -f,--force FORCE=1 -j,--no-cache NO_CACHE=1 + --plain-output PROGRESS=plain -U,--pull PULL=1 -h:,--host: HOST= -g,--ug,--no-update-apps update_apps_mode=b From c2cfd7739ac05ef36c5d45632cb2537a39b34360 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Fri, 10 May 2024 16:04:54 +0400 Subject: [PATCH 06/11] bug --- dkbuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dkbuild b/dkbuild index 8be1da9..5550b7d 100755 --- a/dkbuild +++ b/dkbuild @@ -1078,12 +1078,13 @@ function reset_functions() { function include() { edebug "include $(qvals "$@")" - local file="$1" + local file="$1" cwd="$(pwd)" [ -d "$file" ] && file="$file/dkbuild" [ -f "$file" ] || die "$file: fichier introuvable" setx file=abspath "$file" cd "$(dirname "$file")" source "$file" + cd "$cwd" } function machine() { local machine version From d1f77aa3546822d99e33189dc060ec8529e1974b Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Fri, 10 May 2024 17:15:30 +0400 Subject: [PATCH 07/11] dkbuild: support dist none et tag LATEST --- dkbuild | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/dkbuild b/dkbuild index 5550b7d..40741e3 100755 --- a/dkbuild +++ b/dkbuild @@ -224,9 +224,13 @@ construites. Une version est définie en ajoutant un préfixe à la distribution La commande 'setdists' permet de lister explicitement les distributions valides (et les versions associées le cas échéant). Si la distribution sélectionnée par l'utilisateur n'est pas dans la liste fournie, le script s'arrête sans erreur. + La première distribution listée est spéciale: c'est la distribution la plus récente, celle qui reçoit le tag :latest +La distribution 'none' est spéciale aussi: elle n'est pas mentionnée dans les +tags automatiquement attribués aux images. + La commande 'dist' permet de tester si la distribution spécifiée en argument a été sélectionnée par l'utilisateur. L'argument 'LATEST' permet de tester la dernière distribution. @@ -678,7 +682,8 @@ Les paramètres optionnels sont * set-tag=TAGS... ou set-tags=TAGS... spécifier des tags à rajouter au nom de l'image, séparés par un espace. cette liste remplace celle calculée automatiquement. ce paramètre est ignoré pour - les noms d'images comportant un tag + les noms d'images comportant un tag. + Utiliser le tag spécial LATEST pour rajouter :latest si c'est approprié * add-tag=TAGS... ou add-tags=TAGS... spécifier des tags à rajouter à la liste calculée automatiquement, séparés par un espace. ce paramètre est ignoré pour les noms d'images comportant un tag @@ -2043,6 +2048,14 @@ function define_functions_cmd() { imagetags+=("$imagetag") else for tag in "${set_tags[@]}" "${add_tags[@]}"; do + if [ "$tag" == LATEST ]; then + if [ -n "$HAVE_VERSION" -a "$VERSION" == "$LAST_VERSION" ]; then + tag=latest + else + # ignorer le tag LATEST s'il n'est pas applicable + continue + fi + fi imagetags+=("$imagetag:$tag") done fi @@ -2055,10 +2068,16 @@ function define_functions_cmd() { imagetags+=("$imagetag") else for tag in "${add_tags[@]}"; do + if [ "$tag" == LATEST ]; then + # toujours ignorer le tag LATEST dans add_tags + continue + fi imagetags+=("$imagetag:$tag") done [ -n "$VERSION" ] && imagetags+=("$imagetag:$VERSION-$DIST") - [ -n "$DIST" -a -z "$HAVE_VERSION" ] && imagetags+=("$imagetag:$DIST") + if [ -n "$DIST" -a "$DIST" != none -a -z "$HAVE_VERSION" ]; then + imagetags+=("$imagetag:$DIST") + fi fi done fi @@ -2067,7 +2086,7 @@ function define_functions_cmd() { if [ -z "$HAVE_VERSION" ]; then dist LATEST && imagetags+=("$imagetag:latest") elif [ "$VERSION" == "$LAST_VERSION" ]; then - imagetags+=("$imagetag:$DIST") + [ "$DIST" != none ] && imagetags+=("$imagetag:$DIST") dist LATEST && imagetags+=("$imagetag:latest") fi elif [ -n "$PROFILE" ]; then From 1787aa23105a385de3697b06ff3577c49f853523 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Mon, 13 May 2024 09:44:50 +0400 Subject: [PATCH 08/11] bug --- dkbuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dkbuild b/dkbuild index 40741e3..d569a7c 100755 --- a/dkbuild +++ b/dkbuild @@ -946,8 +946,8 @@ SHARED_ARGS2=( -d:,--dist: DIST= -0,--d10 DIST=d10 -1,--d11 DIST=d11 - -2,--d12 DIST=d11 - -3,--d13 DIST=d11 + -2,--d12 DIST=d12 + -3,--d13 DIST=d13 --r7,--rhel7 DIST=rhel7 --r8,--rhel8 DIST=rhel8 --r9,--rhel9 DIST=rhel9 From e4176dfd94ae1691b0d73e3f7f7c4c2510758b7b Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Mon, 17 Jun 2024 10:44:53 +0400 Subject: [PATCH 09/11] =?UTF-8?q?reginc:=20possibilit=C3=A9=20de=20renomme?= =?UTF-8?q?r=20des=20fichiers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- reginc | 139 ++++++++++++++++++++++++++++++++++++++------------------- 1 file changed, 94 insertions(+), 45 deletions(-) diff --git a/reginc b/reginc index 68acd27..170b240 100755 --- a/reginc +++ b/reginc @@ -12,62 +12,111 @@ remplacer les nombres de FROMmin à FROMmax par leur valeur correspondante, sachant que FROMmin doit être remplacé par TO. On peut mentionner autant de couples (FROM, TO) que nécessaire: ils seront traités dans l'ordre + $scriptname -r FROMmin-FROMmax TO FILEs... + +renommer les fichiers en remplaçant les nombres de FROMmin à FROMmax par leur +valeur correspondante, sachant que FROMmin doit être remplacé par TO + OPTIONS -n, --fake Afficher le fichier tel qu'il serait modifié au lieu de le modifier en - place" + place + -r, --rename + Renommer les fichiers au lieu de modifier le texte à l'intérieur du + fichier. Attention, l'ordre des arguments est différent avec cette + option" } -fake= +function process_file() { + local file from to fromb frome seds r + + file="$1"; shift + [ -n "$file" ] || die "vous devez spécifier le fichier à modifier" + + seds= + while [ $# -ge 2 ]; do + from="$1" + if [[ "$from" == *-* ]]; then + let fromb="${from%-*}" + let frome="${from#*-}" + else + let fromb="$from" + let frome="$from" + fi + let to="$2"; shift 2 + + if [ "$to" -eq "$fromb" ]; then + einfo "$fromb --> $to aucune modification n'est nécessaire" + + elif [ "$to" -lt "$fromb" ]; then + einfo "$fromb-$frome --> $to-$((to+frome-fromb))" + + let from=fromb + while [ "$from" -le "$frome" ]; do + seds="$seds${seds:+; }s/$from/$to/g" + let from=from+1 + let to=to+1 + done + + elif [ "$to" -gt "$fromb" ]; then + einfo "$frome-$fromb --> $((to+frome-fromb))-$to" + + let from=frome + let to=to+frome-fromb + while [ "$from" -ge "$fromb" ]; do + seds="$seds${seds:+; }s/$from/$to/g" + let from=from-1 + let to=to-1 + done + fi + done + + edebug "Script sed: $seds" + + [ -n "$Fake" ] && args=() || args=(-i) + args+=("$seds" "$file") + sed "${args[@]}"; r=$? + + [ -z "$Fake" -a $r -eq 0 ] +} + +Fake= +rename= args=( --help '$exit_with display_help' - -n,--fake fake=1 + -n,--Fake Fake=1 + -r,--rename rename=1 ) parse_args "$@"; set -- "${args[@]}" -file="$1"; shift -[ -n "$file" ] || die "vous devez spécifier le fichier à modifier" +if [ -n "$rename" ]; then + from="$1"; to="$2"; shift 2 -seds= -while [ $# -ge 2 ]; do - from="$1" - if [[ "$from" == *-* ]]; then - let fromb="${from%-*}" - let frome="${from#*-}" - else - let fromb="$from" - let frome="$from" - fi - let to="$2"; shift 2 + froms=("$@") + ac_set_tmpfile tmptos + echo "tos=(" >>"$tmptos" + for file in "${froms[@]}"; do + qval "$file" >>"$tmptos" + done + echo ")" >>"$tmptos" - if [ "$to" -eq "$fromb" ]; then - einfo "$fromb --> $to aucune modification n'est nécessaire" + Fake= process_file "$tmptos" "$from" "$to" + eval "$(<"$tmptos")" - elif [ "$to" -lt "$fromb" ]; then - einfo "$fromb-$frome --> $to-$((to+frome-fromb))" + i=0 + count=${#froms[*]} + while [ $i -lt $count ]; do + from="${froms[$i]}" + to="${tos[$i]}" + if [ "$to" == "$from" ]; then + ewarn "$from: renommage non nécessaire" + else + estep "$from --> $to" + [ -z "$Fake" ] && mv "$from" "$to" + fi + let i=i+1 + done - let from=fromb - while [ "$from" -le "$frome" ]; do - seds="$seds${seds:+; }s/$from/$to/g" - let from=from+1 - let to=to+1 - done - - elif [ "$to" -gt "$fromb" ]; then - einfo "$frome-$fromb --> $((to+frome-fromb))-$to" - - let from=frome - let to=to+frome-fromb - while [ "$from" -ge "$fromb" ]; do - seds="$seds${seds:+; }s/$from/$to/g" - let from=from-1 - let to=to-1 - done - fi -done - -edebug "Script sed: $seds" - -[ -n "$fake" ] && args=() || args=(-i) -args+=("$seds" "$file") -sed "${args[@]}" +else + process_file "$@" +fi From 21042e467721fb1ac4fb833a58b0eef1994d97f0 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Fri, 21 Jun 2024 20:33:50 +0400 Subject: [PATCH 10/11] bug --- lib/ulib/crontab | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/lib/ulib/crontab b/lib/ulib/crontab index cc08d1d..632e612 100644 --- a/lib/ulib/crontab +++ b/lib/ulib/crontab @@ -154,7 +154,7 @@ function ctmatch_one(ctval, ref, parts, part, i, j, start, end, ste #print "final: is " ref " ~ " ctval " ? " (ok? "yes": "no") #DEBUG return ok } -function ctmatch_all(M, H, dom, mon, dow, refM, refH, refdom, refmon, refdow, Mok, Hok, domok, monok, dowok) { +function ctmatch_all(M, H, dom, mon, dow, refM, refH, refdom, refmon, refdow, Mok, Hok, alldom, domok, monok, alldow, dowok, doxok) { if (refM == "**ANY**") return 1 gsub(/\*/, "0-59", M) @@ -163,16 +163,28 @@ function ctmatch_all(M, H, dom, mon, dow, refM, refH, refdom, refmon, refdow, gsub(/\*/, "0-23", H) Hok = ctmatch_one(H, refH) + alldom = dom == "*" gsub(/\*/, "1-31", dom) domok = ctmatch_one(dom, refdom) gsub(/\*/, "1-12", mon) monok = ctmatch_one(mon, refmon) + alldow = dow == "*" gsub(/\*/, "1-7", dow) dowok = ctmatch_one(dow, refdow) - return Mok && Hok && monok && (domok || dowok) + if (alldom && alldow) { + doxok = 1 + } else if (alldom) { + doxok = dowok + } else if (alldow) { + doxok = domok + } else { + doxok = domok || dowok + } + + return Mok && Hok && monok && doxok } function print_cmd(cmd) { print "__ctexec " quote_value(cmd) From 11145f686acf3a5647dd6f3c8c901a155e98acd4 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Fri, 21 Jun 2024 20:34:14 +0400 Subject: [PATCH 11/11] Init changelog & version 11.2.0 --- CHANGES.md | 13 +++++++++++++ VERSION.txt | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index ee9a90d..5c5e096 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,16 @@ +## Version 11.2.0 du 21/06/2024-20:34 + +* `21042e4` bug +* `e4176df` reginc: possibilité de renommer des fichiers +* `1787aa2` bug +* `d1f77aa` dkbuild: support dist none et tag LATEST +* `c2cfd77` bug +* `e7745c2` dk: support --plain-output +* `ce8f541` dkbuild: -g pour --profile +* `30594aa` maj distributions +* `2df175e` dkbuild: cosmetic +* `fbb05f8` support des versions AMUE + ## Version 11.1.0 du 01/02/2024-20:59 * `8570d12` pff: les répertoires liés peuvent contenir des fichiers diff --git a/VERSION.txt b/VERSION.txt index 68d8f15..b85c6c7 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -11.1.0 +11.2.0