Skip to content
Open
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
19 changes: 19 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
Comtypes CHANGELOG
==================

Release 1.4.16
--------------
* Decompose ``IStorage`` tests and enhance coverage. By @junkmd.
* Enhance tests verifying custom ``COMObject``s raise errors. By @junkmd.
* Refactor ``shelllink.py`` for ``ITEMIDLIST`` structure. By @junkmd.
* Fix a code path in ``logutil.NTDebugHandler``. By @junkmd.
* Add a deprecation decorator to ``logutil.setup_logging``. By @junkmd.
* Add tests for connection point interfaces. By @junkmd.
* Add tests for ``IGlobalInterfaceTable`` marshaling. By @junkmd.
* Remove outdated Python 2.3 compatibility. By @junkmd.
* Remove unused test utilities. By @junkmd.
* Extract time utility test helpers. By @junkmd.
* Add ``CreateTypeLib`` and ``ICreateTypeInfo`` tests. By @junkmd.
* Add tests for ``VARIANTEnumerator``. By @junkmd.
* Enhance tests for moniker, bind context and running object table. By @junkmd.
* Introduce GDI test helper module and tests for ``IViewObject.Draw``. By @junkmd.
* Unify COM descriptor release logic in ``ITypeComp.Bind``. By @junkmd.
* Enhance dynamic dispatch and ``client`` testing. By @junkmd.

Release 1.4.15
--------------
* Fix ``TYPE_E_ELEMENTNOTFOUND`` HRESULT constant value. 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.15"
__version__ = "1.4.16"

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.15"
release = "1.4.16"

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