diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2715bd7..605adf5 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.0" + VERSION="10.1.1" 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 f1ec5eb..23de3bd 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ PREFIX ?= /usr -VERSION="10.1.0" +VERSION="10.1.1" 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 3cf9f99..1a75d4f 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.0 + 10.1.1 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 36f3485..f390d73 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.1-1) UNRELEASED; urgency=medium + + * Update version to 10.1.1 + + -- Fin Christensen Sun, 29 May 2022 20:42:56 +0200 + gnome-shell-extension-cpupower (10.1.0-1~jammy1) jammy; urgency=medium * Create jammy release diff --git a/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec b/dist/rpm/SPECS/gnome-shell-extension-cpupower.spec index c2ddca1..e057874 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.0 +Version: 10.1.1 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 ff7ae35..bbb6b25 100755 --- a/tool/cpufreqctl +++ b/tool/cpufreqctl @@ -23,7 +23,7 @@ set -o errexit -o nounset -VERSION="10.1.0" +VERSION="10.1.1" PRODUCTION=yes log () diff --git a/tool/installer.sh b/tool/installer.sh index bed4e28..c898b20 100755 --- a/tool/installer.sh +++ b/tool/installer.sh @@ -23,7 +23,7 @@ set -e -VERSION="10.1.0" +VERSION="10.1.1" EXIT_SUCCESS=0 EXIT_INVALID_ARG=1