diff options
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | README.md | 6 |
3 files changed, 8 insertions, 2 deletions
@@ -306,7 +306,7 @@ checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7" [[package]] name = "makers" -version = "0.1.0" +version = "0.2.0" dependencies = [ "dirs", "eyre", @@ -1,6 +1,6 @@ [package] name = "makers" -version = "0.1.0" +version = "0.2.0" authors = ["boringcactus / Melody Horn <melody@boringcactus.com>"] edition = "2018" description = "a POSIX-compatible make implemented in Rust" @@ -19,6 +19,12 @@ that said, I test manually on complicated projects, and the current record for m ## changelog +### v0.2.0 - 2021-04-01 + +- partially implement GNU-style conditionals (only parentheses around arguments are supported) +- implement some GNU-style functions: `filter`, `filter-out`, `sort`, `notdir`, `basename`, `addprefix`, `wildcard`, `foreach`, `call` +- improve error reporting for parse errors + ### v0.1.0 - 2021-03-25 - initial release |