diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 605adf5..e3caada 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: - name: Release GNOME extension artifacts id: package run: | - VERSION="10.1.1" + VERSION="10.1.2" echo "::set-output name=version::$VERSION" make dist cp target/cpupower-$VERSION.zip $GITHUB_WORKSPACE/cpupower-$VERSION.zip diff --git a/Makefile b/Makefile index 23de3bd..59c551e 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PREFIX ?= /usr -VERSION="10.1.1" +VERSION="10.1.2" MSGFMT = /usr/bin/msgfmt GLIB_COMPILE_SCHEMAS = /usr/bin/glib-compile-schemas diff --git a/data/cpupower-preferences.glade b/data/cpupower-preferences.glade index 1a75d4f..05a677c 100644 --- a/data/cpupower-preferences.glade +++ b/data/cpupower-preferences.glade @@ -64,7 +64,7 @@ along with gnome-shell extension cpupower. If not, see False dialog CPU Power Manager - 10.1.1 + 10.1.2 Gnome-Shell Extension for controlling the frequency scaling driver of your CPU. https://github.com/deinstapel/cpupower Martin Koppehel (@martin31821) diff --git a/dist/deb/gnome-shell-extension-cpupower/debian/changelog b/dist/deb/gnome-shell-extension-cpupower/debian/changelog index f390d73..ac8d6f0 100644 --- a/dist/deb/gnome-shell-extension-cpupower/debian/changelog +++ b/dist/deb/gnome-shell-extension-cpupower/debian/changelog @@ -1,3 +1,9 @@ +gnome-shell-extension-cpupower (10.1.2-1) UNRELEASED; urgency=medium + + * Update version to 10.1.2 + + -- Fin Christensen Sun, 29 May 2022 20:50:32 +0200 + gnome-shell-extension-cpupower (10.1.1-1) UNRELEASED; urgency=medium * Update version to 10.1.1 diff --git a/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec b/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec index abcbce2..ec2fc56 100644 --- a/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec +++ b/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec @@ -1,5 +1,5 @@ Name: gnome-shell-extension-cpupower -Version: 10.1.1 +Version: 10.1.2 Release: 1%{?dist} Summary: Gnome-Shell Extension for controlling the frequency setting of your CPU BuildArch: noarch diff --git a/tool/cpufreqctl b/tool/cpufreqctl index bbb6b25..1ae96f2 100755 --- a/tool/cpufreqctl +++ b/tool/cpufreqctl @@ -23,7 +23,7 @@ set -o errexit -o nounset -VERSION="10.1.1" +VERSION="10.1.2" PRODUCTION=yes log () diff --git a/tool/installer.sh b/tool/installer.sh index c898b20..47e6ce5 100755 --- a/tool/installer.sh +++ b/tool/installer.sh @@ -23,7 +23,7 @@ set -e -VERSION="10.1.1" +VERSION="10.1.2" EXIT_SUCCESS=0 EXIT_INVALID_ARG=1