Skip to content

Commit

Permalink
Merge pull request pywinauto#767 from vasily-v-ryabov/prepare_0_6_7
Browse files Browse the repository at this point in the history
Add release notes for 0.6.7 and bump version
  • Loading branch information
vasily-v-ryabov authored Jul 6, 2019
2 parents 21bbb13 + 9cbef40 commit 85eb121
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
17 changes: 17 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,23 @@
Change Log
==========

0.6.7 Bug Fixes
--------------------------------------------------------------------
07-July-2019

Enhancements:
* Reuse ``ctypes.wintypes`` more to avoid redundant definitions for Win32 API.
* Add method ``EditWrapper.is_editable()`` for "uia" backend.

Bug Fixes:
* Fix corner case with int/long conversion crash while getting text.
* Fix UIA crash: handle InvalidControlType properly.
* Fix menu_select() for one level main menu in WinForms apps.
* Make ``Application`` object non-iterable (iterating was hang).
* Fix type conversion crash in ``GetWindowRect`` (method ``.rectangle()``).
* Fix combo box fluttering/blinking in ``dump_tree() / print_control_identifiers()``.


0.6.6 Better WinForms/Qt5 Support, Bug Fixes
--------------------------------------------------------------------
03-March-2019
Expand Down
2 changes: 1 addition & 1 deletion pywinauto/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

"""Python package for automating GUI manipulation on Windows"""

__version__ = "0.6.6"
__version__ = "0.6.7"

import sys # noqa: E402
import warnings # noqa: E402
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def setup_path(path = ""):
packages = ["pywinauto", "pywinauto.linux"]

setup(name='pywinauto',
version = '0.6.6',
version = '0.6.7',
description = 'A set of Python modules to automate the Microsoft Windows GUI',
keywords = "windows gui automation GuiAuto testing test desktop mouse keyboard",
url = "http://pywinauto.github.io/",
Expand Down

0 comments on commit 85eb121

Please sign in to comment.