From dcdc92abcaf9ba91e38ea4dbddf552d49b150b50 Mon Sep 17 00:00:00 2001 From: Luca Weiss Date: Sun, 15 Aug 2021 11:43:10 +0200 Subject: [PATCH] Release version 3.1.0 --- .bumpversion.cfg | 2 +- Makefile | 2 +- daemon/openrazer_daemon/daemon.py | 2 +- daemon/setup.py | 2 +- debian/changelog | 6 ++++++ driver/razercommon.h | 2 +- install_files/dkms/dkms.conf | 2 +- pylib/openrazer/client/__init__.py | 2 +- pylib/setup.py | 2 +- 9 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.bumpversion.cfg b/.bumpversion.cfg index ea73b45e5..577a6d9b1 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.1 +current_version = 3.1.0 [bumpversion:file:pylib/openrazer/client/__init__.py] diff --git a/Makefile b/Makefile index 074876893..84587cd07 100644 --- a/Makefile +++ b/Makefile @@ -12,7 +12,7 @@ MODULEDIR?=/lib/modules/$(shell uname -r)/kernel/drivers/hid PYTHONDIR?=$(shell python3 -c 'import sys; print(sys.path[-1])') DKMS_NAME?=openrazer-driver -DKMS_VER?=3.0.1 +DKMS_VER?=3.1.0 # Build all target diff --git a/daemon/openrazer_daemon/daemon.py b/daemon/openrazer_daemon/daemon.py index 55afa158b..2895aaa60 100644 --- a/daemon/openrazer_daemon/daemon.py +++ b/daemon/openrazer_daemon/daemon.py @@ -3,7 +3,7 @@ This class is the main core of the daemon, this serves a basic dbus module to control the main bit of the daemon """ -__version__ = '3.0.1' +__version__ = '3.1.0' import configparser import logging diff --git a/daemon/setup.py b/daemon/setup.py index e85f87c72..f0a4c2104 100644 --- a/daemon/setup.py +++ b/daemon/setup.py @@ -4,6 +4,6 @@ setup( name="openrazer_daemon", - version="3.0.1", + version="3.1.0", packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]) ) diff --git a/debian/changelog b/debian/changelog index f8f9eac53..f09b43ecc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +openrazer (3.1.0) focal; urgency=high + + * Changelog available at https://github.com/openrazer/openrazer/releases/tag/v3.1.0 + + -- Luca Weiss Sun, 15 Aug 2021 11:42:45 +0200 + openrazer (3.0.1) bionic; urgency=high * Changelog available at https://github.com/openrazer/openrazer/releases/tag/v3.0.1 diff --git a/driver/razercommon.h b/driver/razercommon.h index 289fb0885..2fef62ce6 100644 --- a/driver/razercommon.h +++ b/driver/razercommon.h @@ -14,7 +14,7 @@ #include -#define DRIVER_VERSION "3.0.1" +#define DRIVER_VERSION "3.1.0" #define DRIVER_LICENSE "GPL v2" #define DRIVER_AUTHOR "Terry Cain " diff --git a/install_files/dkms/dkms.conf b/install_files/dkms/dkms.conf index 85ff2817a..6af3c2c28 100644 --- a/install_files/dkms/dkms.conf +++ b/install_files/dkms/dkms.conf @@ -1,5 +1,5 @@ PACKAGE_NAME="openrazer-driver" -PACKAGE_VERSION="3.0.1" +PACKAGE_VERSION="3.1.0" AUTOINSTALL="yes" MAKE="KERNELDIR=/lib/modules/${kernelver}/build make driver" diff --git a/pylib/openrazer/client/__init__.py b/pylib/openrazer/client/__init__.py index c8d010977..cc8b0594e 100644 --- a/pylib/openrazer/client/__init__.py +++ b/pylib/openrazer/client/__init__.py @@ -3,7 +3,7 @@ from openrazer.client.device import RazerDeviceFactory as _RazerDeviceFactory from openrazer.client import constants -__version__ = '3.0.1' +__version__ = '3.1.0' class DaemonNotFound(Exception): diff --git a/pylib/setup.py b/pylib/setup.py index a28b65c39..8a9649c64 100644 --- a/pylib/setup.py +++ b/pylib/setup.py @@ -4,6 +4,6 @@ setup( name="openrazer", - version="3.0.1", + version="3.1.0", packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]) )