Skip to content

Commit 5adc2ab

Browse files
author
Georgi Valkov
committed
Bump version: 1.3.0 -> 1.4.0
1 parent 642a315 commit 5adc2ab

4 files changed

Lines changed: 23 additions & 5 deletions

File tree

docs/changelog.rst

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,30 @@
11
Changelog
22
---------
33

4-
Master
4+
5+
1.4.0 (Jan 16, 2021)
56
====================
67

78
- Fix ``InputDevice.set_absinfo`` to allow setting parameters to zero.
89

10+
- Fix off-by-one in ``ioctl_EVIOCG_bits``, which causes value at the end of the
11+
list to not be reported back (`#131 <https://github.com/gvalkov/python-evdev/pull/131>`_).
12+
13+
- Fix ``set_absinfo`` to allow setting parameters to zero (`#128 <https://github.com/gvalkov/python-evdev/pull/128>`_).
14+
15+
- Fix leak when returning ``BlockingIOError`` from a read (`#143 <https://github.com/gvalkov/python-evdev/pull/143>`_).
16+
17+
- Fix "There is no current event loop in thread" error for non asyncio code
18+
(`#146 <https://github.com/gvalkov/python-evdev/pull/146>`_).
19+
20+
- Prevent ``InputDevice`` destructor from blocking (`#145 <https://github.com/gvalkov/python-evdev/pull/145>`_).
21+
22+
- Add missing return codes to ``os.strerror()`` calls and fix force feedback
23+
example in docs (`#138 <https://github.com/gvalkov/python-evdev/pull/137>`_).
24+
25+
- Add the ``util.find_ecodes_by_regex()`` helper function.
26+
27+
928

1029
1.3.0 (Jan 12, 2020)
1130
====================

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# built documents.
6161
#
6262
# The full version, including alpha/beta/rc tags.
63-
release = '1.3.0'
63+
release = '1.4.0'
6464

6565
# The short X.Y version.
6666
version = release

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.3.0
2+
current_version = 1.4.0
33
message = Bump version: {current_version} -> {new_version}
44
commit = True
55
tag = True
@@ -11,4 +11,3 @@ max-line-length = 110
1111
[bumpversion:file:setup.py]
1212

1313
[bumpversion:file:docs/conf.py]
14-

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
#-----------------------------------------------------------------------------
4545
kw = {
4646
'name': 'evdev',
47-
'version': '1.3.0',
47+
'version': '1.4.0',
4848

4949
'description': 'Bindings to the Linux input handling subsystem',
5050
'long_description': open(pjoin(here, 'README.rst')).read(),

0 commit comments

Comments
 (0)