Skip to content

Commit

Permalink
chore: release 0.16.0
Browse files Browse the repository at this point in the history
  • Loading branch information
squattingmonk committed Oct 24, 2021
1 parent 379dd83 commit ba52b82
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# nasher changelog

## 0.16.0: October 24, 2021

### Added `--onMultipleSources` option

Previously, when trying to pack a target that had multiple files of the same
name within its source tree, nasher would ask the user to choose which file to
use. This was easy to miss if the `--yes` flag was passed.

This adds the `--onMultipleSources` option with possible values of `choose`
(manually choose a file), `default` (automatically select the first file
found), or `error` (abort with an error message). The default value is `choose`
in order to preserve the existing behavior.

This option is supported for packing operations only. The `unpack` command will
still require users to choose where to extract a file when multiple options are
found.

---

Details: https://github.com/squattingmonk/nasher/compare/0.15.3...0.16.0


## 0.15.3: October 15, 2021

Fixed an issue that caused an `OSError` on Windows when nasher could not find a
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,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.15.3"
ARG NASHER_VERSION="0.16.0"
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
2 changes: 1 addition & 1 deletion nasher.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.15.3"
version = "0.16.0"
author = "Michael A. Sinclair"
description = "A build tool for Neverwinter Nights projects"
license = "MIT"
Expand Down

0 comments on commit ba52b82

Please sign in to comment.