Skip to content

Commit

Permalink
Release version 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
z3ntu committed Apr 1, 2018
1 parent 1f1f548 commit 6054c2a
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 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.2.2
current_version = 2.3.0

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

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.2.2'
__version__ = '2.3.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.2.2",
version="2.3.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.3.0) xenial; urgency=high

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

-- Luca Weiss <luca@z3ntu.xyz> Sun, 01 Apr 2018 15:49:19 +0200

openrazer (2.2.2) xenial; urgency=high

* Changelog available at https://github.com/openrazer/openrazer/releases/tag/v2.2.2
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 VERSION "2.2.2"
#define VERSION "2.3.0"


// Macro to create device files
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.2.2'
__version__ = '2.3.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.2.2",
version="2.3.0",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"])
)

0 comments on commit 6054c2a

Please sign in to comment.