aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-04-06 17:23:35 -0600
committerMelody Horn <melody@boringcactus.com>2021-04-06 17:23:35 -0600
commitcffe08ca6db316f48eafb49b914ecd192aa8c45f (patch)
tree04f2891f71934e63021501d13d0b222c128796f3
parent5cf1f72750af77afd93b5f20f7d17d7864676727 (diff)
downloadmakers-cffe08ca6db316f48eafb49b914ecd192aa8c45f.tar.gz
makers-cffe08ca6db316f48eafb49b914ecd192aa8c45f.zip
new version just dropped0.6.0
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md8
3 files changed, 10 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index f02f069..defcc8c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -334,7 +334,7 @@ dependencies = [
[[package]]
name = "makers"
-version = "0.5.0"
+version = "0.6.0"
dependencies = [
"dirs",
"env_logger",
diff --git a/Cargo.toml b/Cargo.toml
index 0332009..ac87939 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "makers"
-version = "0.5.0"
+version = "0.6.0"
authors = ["boringcactus / Melody Horn <melody@boringcactus.com>"]
edition = "2018"
description = "a POSIX-compatible make implemented in Rust"
diff --git a/README.md b/README.md
index 4800a06..2b5f5a2 100644
--- a/README.md
+++ b/README.md
@@ -35,6 +35,14 @@ list of features that are needed for version 1.0:
## changelog
+### v0.6.0 - 2021-04-06
+
+- implement GNU-style functions `findstring`, `realpath`, `dir`, `lastword`, `words`, `subst`, `error`, `word`, `patsubst`, `addsuffix`
+- provide GNU-style built-in variables `MAKECMDGOALS`, `CURDIR`, `MAKEFILE_LIST`
+- fix broken handling of nested conditionals
+- try to build a missing included makefile before hard-erroring
+- implement GNU-style `export`/`unexport` directives
+
### v0.5.0 - 2021-04-04
- add verbose logging