Compare commits

..

2 commits

Author SHA1 Message Date
54bed638a4 🔨 [tools] Homogeiniza inputs de distintas fuentes 2025-09-20 18:07:37 +02:00
334e975593 ⬆️ Actualiza dependencias mirando 2025-09-20 17:55:44 +02:00
2 changed files with 290 additions and 270 deletions

553
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -88,12 +88,13 @@ git-cliff --unreleased "${COMMON_ARGS[@]}"
echo "CHANGELOG generated at '$CHANGELOG_FILE'" echo "CHANGELOG generated at '$CHANGELOG_FILE'"
# Pregunta por la revisión del archivo de cambios generado # Pregunta por la revisión del archivo de cambios generado
read -p "Do you want to review the changelog before continuing? (y/n) " -r || exit 1 echo "Do you want to review the changelog before continuing? [y/N]"
echo read -r REPLY
if [[ "$REPLY" =~ ^[Yy]$ ]]; then if [[ "$REPLY" =~ ^[Yy]$ ]]; then
${EDITOR:-nano} "$CHANGELOG_FILE" ${EDITOR:-nano} "$CHANGELOG_FILE"
fi fi
read -p "Do you want to proceed with the release of $CRATE? (y/n) " -r || exit 1 echo "Do you want to proceed with the release of $CRATE? [y/N]"
read -r REPLY
echo echo
if [[ ! "$REPLY" =~ ^[Yy]$ ]]; then if [[ ! "$REPLY" =~ ^[Yy]$ ]]; then
echo "Aborting release process." >&2 echo "Aborting release process." >&2