aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMelody Horn <melody@boringcactus.com>2021-03-25 22:40:23 -0600
committerMelody Horn <melody@boringcactus.com>2021-03-25 22:40:23 -0600
commitc94b46ef42fcabae781ba22513c961f1068aa0ab (patch)
treec69dd55186ff5593251d36fe958905b2b3aa0b02
parent9b983e2485716210a321ae0e4524c69f38bf5d6c (diff)
downloadyapymake-c94b46ef42fcabae781ba22513c961f1068aa0ab.tar.gz
yapymake-c94b46ef42fcabae781ba22513c961f1068aa0ab.zip
release version 0.2.00.2.0
-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