Skip to content

Commit

Permalink
Update version, prepare Release Notes.
Browse files Browse the repository at this point in the history
  • Loading branch information
vasily-v-ryabov committed Feb 27, 2017
1 parent 143b3f5 commit ec1348f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
16 changes: 16 additions & 0 deletions docs/HISTORY.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
Change Log
==========

0.6.2 More bug fixes
--------------------------------------------------------------------
28-February-2017
* Several bugs were fixed:

- Maximized window is always resized (restored) when calling ``set_focus()``.
- AttributeError: type object '_CustomLogger' has no attribute 'disable'.
- ``print_control_identifiers()`` gets bytes string on Python 3.x.
- Importing pywinauto causes debug messages to appear twice.

* Improved click methods behaviour for Win32 ListView and TreeView:
``ensure_visible()`` is called inside before the click.

* Made ``taskbar.SystemTrayIcons`` localization friendly.


0.6.1 Bug fixes and optimizations for UI Automation and beyond
--------------------------------------------------------------------
08-February-2017
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.1"
__version__ = "0.6.2"

import sys

Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,9 @@ def setup_path(path = ""):
packages = ["pywinauto", "pywinauto.linux"]

setup(name='pywinauto',
version = '0.6.1',
description = 'pywinauto is a set of python '
'modules to automate the Microsoft Windows GUI',
keywords = "windows automation gui GuiAuto",
version = '0.6.2',
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/",
author = 'Mark Mc Mahon and Contributors',
author_email = '[email protected]',
Expand Down

0 comments on commit ec1348f

Please sign in to comment.