diff --git a/CHANGELOG.md b/CHANGELOG.md index c94aad4..0443a6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # nasher changelog +## 0.18.2: June 22, 2022 + +Fix: relative paths passed to `--nssCompiler` are now relative to the package +directory rather than the target's cache directory. + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.18.1...0.18.2 + + ## 0.18.1: June 5, 2022 ### `unpack` now correctly acts on multiple targets @@ -165,7 +175,7 @@ file = "hak2.hak" ``` ### `nasher list` can now list specific targets - + `nasher list` can now limit its output to the named targets (e.g., `nasher list demo`). The default behavior is to list all targets for backwards compatibility. To list only the first target, use `nasher list ""`. Also supports target @@ -259,7 +269,7 @@ remaining scripts from that chunk will not have been compiled and will show no errors to indicate why. ### `nasher list --verbose` now lists source files - + This will make it easier to see which files will be included in a target without having to build and check the cache. diff --git a/Dockerfile b/Dockerfile index 6f83690..afd4943 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.18.1" +ARG NASHER_VERSION="0.18.2" 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 f0dd124..5c39f2d 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.18.1" +version = "0.18.2" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"