diff --git a/CHANGELOG.md b/CHANGELOG.md index 66d5537..49dace3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # nasher changelog +## 0.20.1: July 8, 2023 + +### Variables are now resolved after inheritance + +Previously, fields inherited from other targets would have their variables +resolved before inheritance, preventing the child target from supplying their +own values for the variable. This update causes all targets to have the +variables resolved after `nasher.cfg `is fully parsed. + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.20.0...0.20.1 + + ## 0.20.0: January 3, 2023 ### Targets can now inherit from other targets diff --git a/Dockerfile b/Dockerfile index 6665afa..711d711 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.0" +ARG NASHER_VERSION="0.20.1" 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 4300371..4e7c042 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.20.0" +version = "0.20.1" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"