From 616dca659afb78be55f0797ac0203c6e0028b8bb Mon Sep 17 00:00:00 2001 From: Ahsan Fayaz Date: Tue, 3 Mar 2020 16:14:22 +0000 Subject: [PATCH] Update version to 1.5.1 --- CHANGELOG.md | 13 +++++++++++++ README.md | 4 ++-- data/gamemoded.8.in | 2 +- example/archlinux/gamemode-git/PKGBUILD | 2 +- meson.build | 2 +- scripts/mkrelease.sh | 2 +- 6 files changed, 19 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 364d319..672f5d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.5.1 + +### Changes + +Minor changes for Debian and Ubuntu packaging: +* Use the preferred logging system rather than defaulting to syslog. +* Prefer the system installation of inih. + +### Contributors + +* Sebastien Bacher @seb128 +* Stephan Lachnit @stephanlachnit + ## 1.5 ### Changes diff --git a/README.md b/README.md index 9a10ec4..f861178 100644 --- a/README.md +++ b/README.md @@ -106,12 +106,12 @@ ACCEPT_KEYWORDS="**" emerge --ask ~games-util/gamemode-9999 ``` ### Build and Install GameMode -Then clone, build and install a release version of GameMode at 1.5: +Then clone, build and install a release version of GameMode at 1.5.1: ```bash git clone https://github.com/FeralInteractive/gamemode.git cd gamemode -git checkout 1.5 # omit to build the master branch +git checkout 1.5.1 # omit to build the master branch ./bootstrap.sh ``` diff --git a/data/gamemoded.8.in b/data/gamemoded.8.in index ae9712a..9c02088 100644 --- a/data/gamemoded.8.in +++ b/data/gamemoded.8.in @@ -1,6 +1,6 @@ .\" Manpage for gamemoded. .\" Contact linux-contact@feralinteractive.com to correct errors or typos. -.TH gamemoded 8 "22 Jan 2020" "1.6-dev" "gamemoded man page" +.TH gamemoded 8 "3 Mar 2020" "1.5.1" "gamemoded man page" .SH NAME gamemoded \- optimises system performance on demand .SH SYNOPSIS diff --git a/example/archlinux/gamemode-git/PKGBUILD b/example/archlinux/gamemode-git/PKGBUILD index 52d5351..e4a7220 100644 --- a/example/archlinux/gamemode-git/PKGBUILD +++ b/example/archlinux/gamemode-git/PKGBUILD @@ -1,6 +1,6 @@ # Maintainer: Ysblokje pkgname=('gamemode-git') -pkgver='1.6-dev' +pkgver='1.5.1' pkgrel=1 pkgdesc="GameMode is a daemon/lib combo for Linux that allows games to request a set of optimisations be temporarily applied to the host OS." arch=('x86_64') diff --git a/meson.build b/meson.build index a4fe817..d983316 100644 --- a/meson.build +++ b/meson.build @@ -2,7 +2,7 @@ project( 'gamemode', 'c', default_options : ['c_std=c11', 'warning_level=3'], - version: '1.6-dev', + version: '1.5.1', license: 'BSD', ) diff --git a/scripts/mkrelease.sh b/scripts/mkrelease.sh index 56bf604..2c1ff22 100755 --- a/scripts/mkrelease.sh +++ b/scripts/mkrelease.sh @@ -7,7 +7,7 @@ set -e git submodule init # Bump in tandem with meson.build, run script once new tag is up. -VERSION="1.6-dev" +VERSION="1.5.1" NAME="gamemode" ./scripts/git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar