diff options
author | Melody Horn <melody@boringcactus.com> | 2021-03-25 22:40:23 -0600 |
---|---|---|
committer | Melody Horn <melody@boringcactus.com> | 2021-03-25 22:40:23 -0600 |
commit | c94b46ef42fcabae781ba22513c961f1068aa0ab (patch) | |
tree | c69dd55186ff5593251d36fe958905b2b3aa0b02 | |
parent | 9b983e2485716210a321ae0e4524c69f38bf5d6c (diff) | |
download | yapymake-0.2.0.tar.gz yapymake-0.2.0.zip |
release version 0.2.00.2.0
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | yapymake/__init__.py | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -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 |