File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11Changelog
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
10291.3.0 (Jan 12, 2020)
1130====================
Original file line number Diff line number Diff line change 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.
6666version = release
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.3 .0
2+ current_version = 1.4 .0
33message = Bump version: {current_version} -> {new_version}
44commit = True
55tag = True
@@ -11,4 +11,3 @@ max-line-length = 110
1111[bumpversion:file:setup.py]
1212
1313[bumpversion:file:docs/conf.py]
14-
Original file line number Diff line number Diff line change 4444#-----------------------------------------------------------------------------
4545kw = {
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 (),
You can’t perform that action at this time.
0 commit comments