Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Comtypes CHANGELOG
==================

Release 1.4.17
--------------
* Unify Windows message handling APIs in ``messageloop.py``. By @junkmd.
* Replace Internet Explorer with MSXML in ``test_eventinterface.py``. By @junkmd.
* Improve error handling for ``GetEvents`` with currently unsupported COM servers. By @junkmd.
* Refactor ``test_basic.py`` to use public APIs. By @junkmd.
* Skip tests using ``util`` on Python 3.15 alpha/beta. By @junkmd.
* Refine type hints for COM object creation and retrieval. By @junkmd.
* Modernize ``IGlobalInterfaceTable`` with type hints. By @junkmd.
* Fix ``UnboundLocalError`` when all struct packings fail in ``calc_packing``. By @ryanda9910.

Release 1.4.16
--------------
* Decompose ``IStorage`` tests and enhance coverage. By @junkmd.
Expand Down
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# comtypes version numbers follow semver (http://semver.org/) and PEP 440
__version__ = "1.4.16"
__version__ = "1.4.17"

try:
from _ctypes import COMError # noqa
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
# The short X.Y version.
version = "1.4"
# The full version, including alpha/beta/rc tags.
release = "1.4.16"
release = "1.4.17"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
Loading