From cccc6ca4e754bbb62bf8029c4a6a06b6005d8e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20F=2E=20R=C3=B8dseth?= Date: Fri, 3 Jun 2022 15:22:59 +0200 Subject: [PATCH] New patch release --- main.c | 2 +- release.sh | 2 +- version.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/main.c b/main.c index a3a2406..7708aff 100644 --- a/main.c +++ b/main.c @@ -10,7 +10,7 @@ #include #include -static const char* versionString = "tinyionice 1.0.1"; +static const char* versionString = "tinyionice 1.0.2"; enum { IOPRIO_CLASS_NONE, IOPRIO_CLASS_RT, diff --git a/release.sh b/release.sh index 2a4e273..a00f9ac 100755 --- a/release.sh +++ b/release.sh @@ -1,5 +1,5 @@ #!/bin/sh -ver=1.0.1 +ver=1.0.2 mkdir tinyionice-$ver cp -v main.c Makefile COPYING README.md tinyionice-$ver/ tar zcvf tinyionice-$ver.tar.gz tinyionice-$ver/ diff --git a/version.sh b/version.sh index c348267..2f3291a 100755 --- a/version.sh +++ b/version.sh @@ -4,7 +4,7 @@ # # The current version goes here, as the default value -VERSION=${1:-'1.0.1'} +VERSION=${1:-'1.0.2'} if [ -z "$1" ]; then echo "The current version is $VERSION, pass the new version as the first argument if you wish to change it"