aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md6
3 files changed, 8 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4402612..ba69106 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -306,7 +306,7 @@ checksum = "8916b1f6ca17130ec6568feccee27c156ad12037880833a3b842a823236502e7"
[[package]]
name = "makers"
-version = "0.1.0"
+version = "0.2.0"
dependencies = [
"dirs",
"eyre",
diff --git a/Cargo.toml b/Cargo.toml
index 4c5ffbf..41f2334 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"
diff --git a/README.md b/README.md
index 0949478..cce00fb 100644
--- a/README.md
+++ b/README.md
@@ -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