Skip to content

Commit

Permalink
chore: update to 0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
squattingmonk committed Jul 8, 2023
1 parent e8a26fb commit a872d9a
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# nasher changelog

## 0.20.1: July 8, 2023

### Variables are now resolved after inheritance

Previously, fields inherited from other targets would have their variables
resolved before inheritance, preventing the child target from supplying their
own values for the variable. This update causes all targets to have the
variables resolved after `nasher.cfg `is fully parsed.

---

Details: https://github.com/squattingmonk/nasher/compare/0.20.0...0.20.1


## 0.20.0: January 3, 2023

### Targets can now inherit from other targets
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,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.20.0"
ARG NASHER_VERSION="0.20.1"
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.20.0"
version = "0.20.1"
author = "Michael A. Sinclair"
description = "A build tool for Neverwinter Nights projects"
license = "MIT"
Expand Down

0 comments on commit a872d9a

Please sign in to comment.