M Makefile => Makefile +1 -1
@@ 4,7 4,7 @@
PKGNAME=beagles
-VERSION=0.1.1
+VERSION=0.2.0
VPATH=doc
PREFIX?=/usr/local
M doc/beagles-config.5.scd => doc/beagles-config.5.scd +1 -1
@@ 179,6 179,6 @@ library (e.g. PgUp).
Written and maintained by Chris Palmer
-beagles v0.1.1 is available under the terms of the GPL-3.0 license.
+beagles v0.2.0 is available under the terms of the GPL-3.0 license.
Copyright © 2020 Chris Palmer <chris@red-oxide.org>
M doc/beagles.1.scd => doc/beagles.1.scd +1 -1
@@ 123,6 123,6 @@ https://sr.ht/~chrisppy/beagles
Written and maintained by Chris Palmer
-beagles v0.1.1 is available under the terms of the GPL-3.0 license.
+beagles v0.2.0 is available under the terms of the GPL-3.0 license.
Copyright © 2020 Chris Palmer <chris@red-oxide.org>
M mkrelease.sh => mkrelease.sh +3 -0
@@ 12,9 12,12 @@ patch=$(echo "${cver}" | awk -F '.' '{print $3}')
case "${t}" in
"major")
major=$((major+1))
+ minor=0
+ patch=0
;;
"minor")
minor=$((minor+1))
+ patch=0
;;
"patch")
patch=$((patch+1))