diff --git a/CHANGELOG.md b/CHANGELOG.md index a587aab..e8d5ad1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # nasher changelog +## 0.14.2: December 29, 2020 + +Increased the required nwnt version to 1.3.0. This is required because previous +versions of nwnt ignored empty lists, leaving some files unable to be opened by +the toolset. + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.14.1...0.14.2 + + ## 0.14.1: December 21, 2020 Increased the required nim version to 1.4.0 to avoid conflict with nwnt. diff --git a/README.md b/README.md index eadc9cc..1fd52c0 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ it has some key differences: * nasher uses json or [nwnt](https://github.com/WillamDraco/nwnt) rather than yaml for storing gff files -This guide is current as of nasher release 0.14.1. +This guide is current as of nasher release 0.14.x. * [Installation Options](#installation-options) * [Binary Releases](#binary-releases) diff --git a/dockerfile b/dockerfile index 0d16cd6..a98f58e 100644 --- a/dockerfile +++ b/dockerfile @@ -5,7 +5,7 @@ FROM nimlang/nim:alpine as nasher COPY --from=nwnsc usr/local/bin/nwnsc usr/local/bin/nwnsc COPY --from=nwnsc /nwn /nwn RUN apk add --no-cache bash pcre -ARG NASHER_VERSION="0.14.1" +ARG NASHER_VERSION="0.14.2" ENV PATH="/root/.nimble/bin:$PATH" RUN nimble install nasher@#${NASHER_VERSION} -y RUN nasher config --nssFlags:"-n /nwn/data -o" \ diff --git a/nasher.nimble b/nasher.nimble index ee26205..7a7eee2 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.14.1" +version = "0.14.2" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"