aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--yapymake/__init__.py2
2 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1f4cfc6..2e7e7ce 100644
--- a/README.md
+++ b/README.md
@@ -18,6 +18,10 @@ that said, I test manually on complicated projects, and the current record for m
## changelog
+### v0.2.0 - 2021-03-25
+
+- implement GNU-style VPATH
+
### v0.1.0 - 2021-03-25
- initial release
diff --git a/yapymake/__init__.py b/yapymake/__init__.py
index c90c250..e3ad1d0 100644
--- a/yapymake/__init__.py
+++ b/yapymake/__init__.py
@@ -1,4 +1,4 @@
-VERSION = '0.1.0'
+VERSION = '0.2.0'
DESCRIPTION = 'A (mostly) POSIX-compatible make implemented in Python'
from .args import parse