Skip to content

Commit

Permalink
Release version 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
z3ntu committed Nov 8, 2020
1 parent 7187bcf commit 26f33e4
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 2.8.0
current_version = 2.9.0

[bumpversion:file:pylib/openrazer/client/__init__.py]

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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?=2.8.0
DKMS_VER?=2.9.0


# Build all target
Expand Down
2 changes: 1 addition & 1 deletion daemon/openrazer_daemon/daemon.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__ = '2.8.0'
__version__ = '2.9.0'

import configparser
import logging
Expand Down
2 changes: 1 addition & 1 deletion daemon/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

setup(
name="openrazer_daemon",
version="2.8.0",
version="2.9.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
)
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
openrazer (2.9.0) bionic; urgency=high

* Changelog available at https://github.com/openrazer/openrazer/releases/tag/v2.9.0

-- Luca Weiss <luca@z3ntu.xyz> Sun, 08 Nov 2020 17:01:11 +0100

openrazer (2.8.0) bionic; urgency=high

* Changelog available at https://github.com/openrazer/openrazer/releases/tag/v2.8.0
Expand Down
2 changes: 1 addition & 1 deletion driver/razercommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

#include <linux/usb/input.h>

#define DRIVER_VERSION "2.8.0"
#define DRIVER_VERSION "2.9.0"
#define DRIVER_LICENSE "GPL v2"
#define DRIVER_AUTHOR "Terry Cain <terry@terrys-home.co.uk>"

Expand Down
2 changes: 1 addition & 1 deletion install_files/dkms/dkms.conf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PACKAGE_NAME="openrazer-driver"
PACKAGE_VERSION="2.8.0"
PACKAGE_VERSION="2.9.0"
AUTOINSTALL="yes"
MAKE="KERNELDIR=/lib/modules/${kernelver}/build make driver"

Expand Down
2 changes: 1 addition & 1 deletion pylib/openrazer/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from openrazer.client.device import RazerDeviceFactory as _RazerDeviceFactory
from openrazer.client import constants

__version__ = '2.8.0'
__version__ = '2.9.0'


class DaemonNotFound(Exception):
Expand Down
2 changes: 1 addition & 1 deletion pylib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

setup(
name="openrazer",
version="2.8.0",
version="2.9.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
)

0 comments on commit 26f33e4

Please sign in to comment.