From c14a6fce4bc432220f07e9044e18e72905a90b6a Mon Sep 17 00:00:00 2001 From: Chris Palmer Date: Sun, 4 Oct 2020 10:45:53 -0400 Subject: [PATCH] Updates for 0.2.0 release --- Makefile | 2 +- doc/beagles-config.5.scd | 2 +- doc/beagles.1.scd | 2 +- mkrelease.sh | 3 +++ 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0d4e80b..97dbf61 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ PKGNAME=beagles -VERSION=0.1.1 +VERSION=0.2.0 VPATH=doc PREFIX?=/usr/local diff --git a/doc/beagles-config.5.scd b/doc/beagles-config.5.scd index 27f7ece..0e287a3 100644 --- a/doc/beagles-config.5.scd +++ b/doc/beagles-config.5.scd @@ -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 diff --git a/doc/beagles.1.scd b/doc/beagles.1.scd index 1fa9307..e006d1e 100644 --- a/doc/beagles.1.scd +++ b/doc/beagles.1.scd @@ -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 diff --git a/mkrelease.sh b/mkrelease.sh index 23f258b..e3b1b8b 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -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)) -- 2.38.5