From 8fb5469ace8970ec19a810718b290685b1aae34f Mon Sep 17 00:00:00 2001 From: Adnan Hodzic Date: Sun, 9 Jan 2022 14:03:35 +0100 Subject: [PATCH] v1.9.1 release & Github issue template update --- .github/issue_template.md | 12 +++++++++--- auto_cpufreq/core.py | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/issue_template.md b/.github/issue_template.md index 86bdced..ffd3eb1 100644 --- a/.github/issue_template.md +++ b/.github/issue_template.md @@ -1,11 +1,17 @@ ### Error output: ```text -Paste here error output +Add/paste error output ``` --- ### System information: -```text -Paste here output of the auto-cpufreq --debug + +Add/paste output of: + ``` +auto-cpufreq --debug +``` + +#### Without providing requested information your issue might be ignored! + --- diff --git a/auto_cpufreq/core.py b/auto_cpufreq/core.py index 75e8a7d..6acddb6 100644 --- a/auto_cpufreq/core.py +++ b/auto_cpufreq/core.py @@ -116,7 +116,7 @@ def app_version(): # snap package if os.getenv("PKG_MARKER") == "SNAP": - print(getoutput("echo Snap version: $SNAP_VERSION")) + print(getoutput("echo \(Snap\) $SNAP_VERSION")) # aur package elif dist_name in ["arch", "manjaro", "garuda"]: aur_pkg_check = call("pacman -Qs auto-cpufreq > /dev/null", shell=True) diff --git a/setup.py b/setup.py index f9afd3e..6441999 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ def read(name): return f.read() # Used for the tar.gz/snap releases -VERSION = "1.9.0" +VERSION = "1.9.1" setup( name="auto-cpufreq",