Skip to content

Commit

Permalink
Release version 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
z3ntu committed Aug 15, 2021
1 parent f74e963 commit dcdc92a
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 = 3.0.1
current_version = 3.1.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?=3.0.1
DKMS_VER?=3.1.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__ = '3.0.1'
__version__ = '3.1.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="3.0.1",
version="3.1.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 (3.1.0) focal; urgency=high

* Changelog available at https://github.com/openrazer/openrazer/releases/tag/v3.1.0

-- Luca Weiss <luca@z3ntu.xyz> 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
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 "3.0.1"
#define DRIVER_VERSION "3.1.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="3.0.1"
PACKAGE_VERSION="3.1.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__ = '3.0.1'
__version__ = '3.1.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="3.0.1",
version="3.1.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
)

0 comments on commit dcdc92a

Please sign in to comment.