Skip to content

Commit

Permalink
Release version 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
z3ntu committed Apr 14, 2024
1 parent a6dc427 commit ed37ec9
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 9 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.7.0
current_version = 3.8.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 @@ -25,7 +25,7 @@ DRIVERDIR?=$(shell pwd)/driver
MODULEDIR?=/lib/modules/$(shell uname -r)/kernel/drivers/hid

DKMS_NAME?=openrazer-driver
DKMS_VER?=3.7.0
DKMS_VER?=3.8.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 @@ -5,7 +5,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.7.0'
__version__ = '3.8.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 @@ -5,7 +5,7 @@

setup(
name="openrazer_daemon",
version="3.7.0",
version="3.8.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
install_requires=[
"daemonize >= 2.4.7",
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
openrazer (3.8.0) jammy; urgency=high

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

-- Luca Weiss <luca@z3ntu.xyz> Sun, 14 Apr 2024 11:34:24 +0200

openrazer (3.7.0) jammy; urgency=high

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

#include <linux/usb/input.h>

#define DRIVER_VERSION "3.7.0"
#define DRIVER_VERSION "3.8.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.7.0"
PACKAGE_VERSION="3.8.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 @@ -5,7 +5,7 @@
from openrazer.client.device import RazerDeviceFactory as _RazerDeviceFactory
from openrazer.client import constants

__version__ = '3.7.0'
__version__ = '3.8.0'


class DaemonNotFound(Exception):
Expand Down
4 changes: 2 additions & 2 deletions pylib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@

setup(
name="openrazer",
version="3.7.0",
version="3.8.0",
packages=find_packages(exclude=["tests", "openrazer._fake_driver"]),
install_requires=[
"dbus-python >= 1.2.0",
"numpy >= 1.11.0",
"openrazer_daemon == 3.7.0",
"openrazer_daemon == 3.8.0",
],
author="OpenRazer contributors",
description="Library for interacting with the OpenRazer daemon.",
Expand Down

0 comments on commit ed37ec9

Please sign in to comment.