diff --git a/CHANGELOG.md b/CHANGELOG.md index 680cdfe..00c042f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # nasher changelog +## 0.16.3: January 01, 2022 + +Added error handling for out-of-range int values on choice prompts. Previously, +choice prompts only covered non-int values and out-of-range int values would +throw an exception. ([#91](https://github.com/squattingmonk/nasher/issues/91)) + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.16.2...0.16.3 + + ## 0.16.2: - json output no longer uses carriage returns at line endings diff --git a/Dockerfile b/Dockerfile index 881eb2d..45e8774 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,7 +16,7 @@ RUN dpkg --add-architecture i386 \ && apt upgrade -y \ && apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386 -y \ && rm -fr /var/lib/apt/lists/* /root/.cache/* /usr/share/doc/* /var/cache/man/* -ARG NASHER_VERSION="0.16.2" +ARG NASHER_VERSION="0.16.3" ARG NASHER_USER_ID=1000 RUN adduser nasher --disabled-password --gecos "" --uid ${NASHER_USER_ID} RUN echo "nasher ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers && usermod -aG sudo nasher diff --git a/nasher.nimble b/nasher.nimble index c4c53e9..072d3ac 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.16.2" +version = "0.16.3" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"