From 99c84adf66fb72633e097cca18bc6ffe9732632c Mon Sep 17 00:00:00 2001 From: Georgi Valkov Date: Sat, 1 Sep 2018 19:37:44 +0200 Subject: [PATCH] Bump version: 1.1.0 -> 1.1.2 --- docs/changelog.rst | 8 ++++++++ docs/conf.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 03c0a43..74ffe0e 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,14 @@ Changelog --------- +1.1.2 (Sep 1, 2018) +==================== + +- Fix installation on kernels <= 4.4. + +- Fix uinput creation ignoring absinfo settings. + + 1.1.0 (Aug 27, 2018) ==================== diff --git a/docs/conf.py b/docs/conf.py index 35f7f4f..a0b9c03 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,7 +60,7 @@ # built documents. # # The full version, including alpha/beta/rc tags. -release = '1.1.0' +release = '1.1.2' # The short X.Y version. version = release diff --git a/setup.cfg b/setup.cfg index e0fe229..79e6c99 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.0 +current_version = 1.1.2 message = Bump version: {current_version} -> {new_version} commit = True tag = True diff --git a/setup.py b/setup.py index 3f28181..c3e9e60 100755 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ #----------------------------------------------------------------------------- kw = { 'name': 'evdev', - 'version': '1.1.0', + 'version': '1.1.2', 'description': 'Bindings to the Linux input handling subsystem', 'long_description': open(pjoin(here, 'README.rst')).read(),