Skip to content

Commit

Permalink
chore: release 0.17.2
Browse files Browse the repository at this point in the history
  • Loading branch information
squattingmonk committed Apr 21, 2022
1 parent 619de10 commit c668840
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# nasher changelog

## 0.17.2: April 21, 2022

- An error is now generated if multiple targets in nasher.cfg have the same name.
- Target names can now include all printable ascii characters except the
following characters which are invalid in filenames: `/\:*?\"<>|^`. Note:
target names are automatically converted to lowercase to avoid issues
with case-sensitive OSes.

---

Details: https://github.com/squattingmonk/nasher/compare/0.17.1...0.17.2

## 0.17.1: April 18, 2022

Hotfix: `--abortOnCompileError` no longer consumes the following argument or
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.17.1"
ARG NASHER_VERSION="0.17.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
Expand Down
4 changes: 2 additions & 2 deletions nasher.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.17.1"
version = "0.17.2"
author = "Michael A. Sinclair"
description = "A build tool for Neverwinter Nights projects"
license = "MIT"
Expand All @@ -13,4 +13,4 @@ bin = @["nasher"]
requires "nim >= 1.6.4"
requires "neverwinter >= 1.5.5"
requires "glob >= 0.11.1"
requires "nwnt >= 1.3.3"
requires "nwnt >= 1.3.0"

0 comments on commit c668840

Please sign in to comment.