diff --git a/CHANGELOG.md b/CHANGELOG.md index 398d9bd..4f480a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## v2.0.2 - 2024-11-06 + +- test against newer nims +- update documentation for newer nims +- upgrade lintball + ## v2.0.1 - 2022-11-28 - fix: sorting for `asdf list-all nim` diff --git a/lib/utils.bash b/lib/utils.bash index 6187e75..6c3b1e8 100644 --- a/lib/utils.bash +++ b/lib/utils.bash @@ -184,26 +184,26 @@ STEP=0 section_start() { STEP=0 if [ "$ASDF_NIM_SILENT" = "no" ]; then - printf "\n%s\n" "$1" 1>&"$ASDF_NIM_STDOUT" 2>&"$ASDF_NIM_STDERR" + printf "\n%b\n" "$1" 1>&"$ASDF_NIM_STDOUT" 2>&"$ASDF_NIM_STDERR" fi } step_start() { export STEP=$((STEP + 1)) if [ "$ASDF_NIM_SILENT" = "no" ]; then - printf " %s. %s … " "$STEP" "$1" 1>&"$ASDF_NIM_STDOUT" 2>&"$ASDF_NIM_STDERR" + printf " %b. %b … " "$STEP" "$1" 1>&"$ASDF_NIM_STDOUT" 2>&"$ASDF_NIM_STDERR" fi } step_end() { if [ "$ASDF_NIM_SILENT" = "no" ]; then - printf "%s\n" "$1" 1>&"$ASDF_NIM_STDOUT" 2>&"$ASDF_NIM_STDERR" + printf "%b\n" "$1" 1>&"$ASDF_NIM_STDOUT" 2>&"$ASDF_NIM_STDERR" fi } die() { if [ "$ASDF_NIM_SILENT" = "no" ]; then - printf "\n💥 %s\n\n" "$1" 1>&"$ASDF_NIM_STDERR" + printf "\n💥 %b\n\n" "$1" 1>&"$ASDF_NIM_STDERR" fi }