~chrisppy/beagles

c14a6fce4bc432220f07e9044e18e72905a90b6a — Chris Palmer 2 years ago fc86f6d v0.2.0
Updates for 0.2.0 release
4 files changed, 6 insertions(+), 3 deletions(-)

M Makefile
M doc/beagles-config.5.scd
M doc/beagles.1.scd
M mkrelease.sh
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))