Skip to content

Commit 616dca6

Browse files
committed
Update version to 1.5.1
1 parent d3e309b commit 616dca6

File tree

6 files changed

+19
-6
lines changed

6 files changed

+19
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## 1.5.1
2+
3+
### Changes
4+
5+
Minor changes for Debian and Ubuntu packaging:
6+
* Use the preferred logging system rather than defaulting to syslog.
7+
* Prefer the system installation of inih.
8+
9+
### Contributors
10+
11+
* Sebastien Bacher @seb128
12+
* Stephan Lachnit @stephanlachnit
13+
114
## 1.5
215

316
### Changes

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,12 +106,12 @@ ACCEPT_KEYWORDS="**" emerge --ask ~games-util/gamemode-9999
106106
```
107107

108108
### Build and Install GameMode
109-
Then clone, build and install a release version of GameMode at 1.5:
109+
Then clone, build and install a release version of GameMode at 1.5.1:
110110

111111
```bash
112112
git clone https://github.com/FeralInteractive/gamemode.git
113113
cd gamemode
114-
git checkout 1.5 # omit to build the master branch
114+
git checkout 1.5.1 # omit to build the master branch
115115
./bootstrap.sh
116116
```
117117

data/gamemoded.8.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.\" Manpage for gamemoded.
22
.\" Contact [email protected] to correct errors or typos.
3-
.TH gamemoded 8 "22 Jan 2020" "1.6-dev" "gamemoded man page"
3+
.TH gamemoded 8 "3 Mar 2020" "1.5.1" "gamemoded man page"
44
.SH NAME
55
gamemoded \- optimises system performance on demand
66
.SH SYNOPSIS

example/archlinux/gamemode-git/PKGBUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Maintainer: Ysblokje <ysblokje at gmail dot com>
22
pkgname=('gamemode-git')
3-
pkgver='1.6-dev'
3+
pkgver='1.5.1'
44
pkgrel=1
55
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."
66
arch=('x86_64')

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ project(
22
'gamemode',
33
'c',
44
default_options : ['c_std=c11', 'warning_level=3'],
5-
version: '1.6-dev',
5+
version: '1.5.1',
66
license: 'BSD',
77
)
88

scripts/mkrelease.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ set -e
77
git submodule init
88

99
# Bump in tandem with meson.build, run script once new tag is up.
10-
VERSION="1.6-dev"
10+
VERSION="1.5.1"
1111

1212
NAME="gamemode"
1313
./scripts/git-archive-all.sh --format tar --prefix ${NAME}-${VERSION}/ --verbose -t HEAD ${NAME}-${VERSION}.tar

0 commit comments

Comments
 (0)