Skip to content

Commit

Permalink
Bump version: 1.3.0 -> 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Valkov committed Jan 16, 2021
1 parent 642a315 commit 5adc2ab
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
21 changes: 20 additions & 1 deletion docs/changelog.rst
@@ -1,11 +1,30 @@
Changelog
---------

Master

1.4.0 (Jan 16, 2021)
====================

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

- Fix off-by-one in ``ioctl_EVIOCG_bits``, which causes value at the end of the
list to not be reported back (`#131 <https://github.com/gvalkov/python-evdev/pull/131>`_).

- Fix ``set_absinfo`` to allow setting parameters to zero (`#128 <https://github.com/gvalkov/python-evdev/pull/128>`_).

- Fix leak when returning ``BlockingIOError`` from a read (`#143 <https://github.com/gvalkov/python-evdev/pull/143>`_).

- Fix "There is no current event loop in thread" error for non asyncio code
(`#146 <https://github.com/gvalkov/python-evdev/pull/146>`_).

- Prevent ``InputDevice`` destructor from blocking (`#145 <https://github.com/gvalkov/python-evdev/pull/145>`_).

- Add missing return codes to ``os.strerror()`` calls and fix force feedback
example in docs (`#138 <https://github.com/gvalkov/python-evdev/pull/137>`_).

- Add the ``util.find_ecodes_by_regex()`` helper function.



1.3.0 (Jan 12, 2020)
====================
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -60,7 +60,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = '1.3.0'
release = '1.4.0'

# The short X.Y version.
version = release
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.3.0
current_version = 1.4.0
message = Bump version: {current_version} -> {new_version}
commit = True
tag = True
Expand All @@ -11,4 +11,3 @@ max-line-length = 110
[bumpversion:file:setup.py]

[bumpversion:file:docs/conf.py]

2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -44,7 +44,7 @@
#-----------------------------------------------------------------------------
kw = {
'name': 'evdev',
'version': '1.3.0',
'version': '1.4.0',

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

0 comments on commit 5adc2ab

Please sign in to comment.