From 0c9d075a827f54e1c7f3292bffb8dd6b9e265f15 Mon Sep 17 00:00:00 2001 From: "Michael A. Sinclair" Date: Mon, 21 Dec 2020 17:31:24 -0600 Subject: [PATCH] chore: release 0.14.1 --- CHANGELOG.md | 9 +++++++++ README.md | 2 +- dockerfile | 2 +- nasher.nimble | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7ebb538..a587aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # nasher changelog +## 0.14.1: December 21, 2020 + +Increased the required nim version to 1.4.0 to avoid conflict with nwnt. + +--- + +Details: https://github.com/squattingmonk/nasher/compare/0.14.0...0.14.1 + + ## 0.14.0: December 20, 2020 ### Support for git branch-based workflow diff --git a/README.md b/README.md index f4cfe72..eadc9cc 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.0. +This guide is current as of nasher release 0.14.1. * [Installation Options](#installation-options) * [Binary Releases](#binary-releases) diff --git a/dockerfile b/dockerfile index 11fa2b6..0d16cd6 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.0" +ARG NASHER_VERSION="0.14.1" 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 b5db0b5..d83f0ae 100644 --- a/nasher.nimble +++ b/nasher.nimble @@ -1,6 +1,6 @@ # Package -version = "0.14.0" +version = "0.14.1" author = "Michael A. Sinclair" description = "A build tool for Neverwinter Nights projects" license = "MIT"