Skip to content

Commit 10496b2

Browse files
committed
(make-release) Update version from 10.0.1 to 10.1.0
Signed-off-by: Fin Christensen <fin.christensen@posteo.de>
1 parent aa15e74 commit 10496b2

File tree

7 files changed

+13
-7
lines changed

7 files changed

+13
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- name: Release GNOME extension artifacts
3939
id: package
4040
run: |
41-
VERSION="10.0.1"
41+
VERSION="10.1.0"
4242
echo "::set-output name=version::$VERSION"
4343
make dist
4444
cp target/cpupower-$VERSION.zip $GITHUB_WORKSPACE/cpupower-$VERSION.zip

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PREFIX ?= /usr
22

3-
VERSION="10.0.1"
3+
VERSION="10.1.0"
44

55
MSGFMT = /usr/bin/msgfmt
66
GLIB_COMPILE_SCHEMAS = /usr/bin/glib-compile-schemas

data/cpupower-preferences.glade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ along with gnome-shell extension cpupower. If not, see
6464
<property name="can-focus">False</property>
6565
<property name="type-hint">dialog</property>
6666
<property name="program-name">CPU Power Manager</property>
67-
<property name="version">10.0.1</property>
67+
<property name="version">10.1.0</property>
6868
<property name="comments" translatable="yes">Gnome-Shell Extension for controlling the frequency scaling driver of your CPU.</property>
6969
<property name="website">https://github.com/deinstapel/cpupower</property>
7070
<property name="authors">Martin Koppehel (@martin31821)

dist/deb/gnome-shell-extension-cpupower/debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
gnome-shell-extension-cpupower (10.1.0-1) UNRELEASED; urgency=medium
2+
3+
* Update version to 10.1.0
4+
5+
-- Fin Christensen <fin-ger@posteo.me> Sun, 22 May 2022 20:32:28 +0200
6+
17
gnome-shell-extension-cpupower (10.0.1-1~jammy1) jammy; urgency=medium
28

39
* Create jammy release

dist/rpm/SPECS/gnome-shell-extension-cpupower.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: gnome-shell-extension-cpupower
2-
Version: 10.0.1
2+
Version: 10.1.0
33
Release: 1%{?dist}
44
Summary: Gnome-Shell Extension for controlling the frequency setting of your CPU
55
BuildArch: noarch

tool/cpufreqctl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323

2424
set -o errexit -o nounset
2525

26-
VERSION="10.0.1"
27-
PRODUCTION=no
26+
VERSION="10.1.0"
27+
PRODUCTION=yes
2828

2929
log ()
3030
{

tool/installer.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
set -e
2525

26-
VERSION="10.0.1"
26+
VERSION="10.1.0"
2727

2828
EXIT_SUCCESS=0
2929
EXIT_INVALID_ARG=1

0 commit comments

Comments
 (0)