X Tutup
Skip to content

Commit 7fcd680

Browse files
committed
Bump version: 0.5.0 -> 0.6.0
1 parent 765a576 commit 7fcd680

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

docs/changelog.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
Changelog
22
=========
33

4-
In developement
5-
^^^^^^^^^^^^^^^
4+
0.6.0 (Feb 14, 2015)
5+
^^^^^^^^^^^^^^^^^^^^
66

77
- Asyncio and async/await support (many thanks to `@paulo-raca`_).
8-
- Add the ability to set the `phys` of uinput devices (thanks `@paulo-raca`_).
8+
- Add the ability to set the `phys` property of uinput devices (thanks `@paulo-raca`_).
99
- Add a generic :func:`InputDevice.set` method (thanks `@paulo-raca`_).
10-
- Distribute evtest along with evtest.
10+
- Distribute the evtest script along with evdev.
1111
- Fix issue with generating :mod:`ecodes.c` in recent kernels (``>= 4.4.0``).
1212
- Fix absinfo item indexes in :func:`UInput.uinput_create()` (thanks `@forsenonlhaimaisentito`_).
13-
- More robust comparison of :class:`InputDevice` objects (thanks `@isia`_).
13+
- More robust comparison of :class:`InputDevice` objects (thanks `@isia`_).
1414

1515
0.5.0 (Jun 16, 2015)
1616
^^^^^^^^^^^^^^^^^^^^

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
# built documents.
6060
#
6161
# The full version, including alpha/beta/rc tags.
62-
release = '0.5.0'
62+
release = '0.6.0'
6363

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

evdev/eventio_async.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def async_read(self):
3636
def async_read_loop(self):
3737
'''
3838
Return an iterator that yields input events. This iterator is
39-
compatible with the ``async for`` syntax
39+
compatible with the ``async for`` syntax.
4040
4141
'''
4242
return ReadIterator(self)

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.0
2+
current_version = 0.6.0
33
message = Bump version: {current_version} -> {new_version}
44
commit = True
55
tag = True
@@ -11,3 +11,4 @@ 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
@@ -43,7 +43,7 @@
4343
#-----------------------------------------------------------------------------
4444
kw = {
4545
'name': 'evdev',
46-
'version': '0.5.0',
46+
'version': '0.6.0',
4747

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

0 commit comments

Comments
 (0)
X Tutup