diff --git a/CHANGELOG.md b/CHANGELOG.md index 30cae8c..985ee3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # nasher changelog +## 0.21.0: September 2, 2023 + +- The `compile` command now returns a non-zero exit code on failure. When + multiple targets are being compiled, failure to build one target will abort + operations on any remaining targets. Thanks to Ardesco for PR + [#111](https://github.com/squattingmonk/nasher/pull/111). + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.20.2...0.21.0 + + ## 0.20.2: August 2, 2023 - The `Orientation` field in gff files no longer flaps sign (0/-0). @@ -10,7 +22,6 @@ Details: https://github.com/squattingmonk/nasher/compare/0.20.1...0.20.2 - ## 0.20.1: July 8, 2023 ### Variables are now resolved after inheritance diff --git a/Dockerfile b/Dockerfile index 80fc715..d02a2e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,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.20.2" +ARG NASHER_VERSION="0.21.0" 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 c8ab80e..ce0cd43 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.20.2" +version = "0.21.0" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"