Skip to content

Commit 4a1a11a

Browse files
authored
Bump version and update change log for 1.4.16 (#931)
* Update `docs/source/conf.py`. * Update `comtypes/__init__.py`. * Update change log for 1.4.16.
1 parent 5b1aaaf commit 4a1a11a

3 files changed

Lines changed: 21 additions & 2 deletions

File tree

CHANGES.txt

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Comtypes CHANGELOG
22
==================
33

4+
Release 1.4.16
5+
--------------
6+
* Decompose ``IStorage`` tests and enhance coverage. By @junkmd.
7+
* Enhance tests verifying custom ``COMObject``s raise errors. By @junkmd.
8+
* Refactor ``shelllink.py`` for ``ITEMIDLIST`` structure. By @junkmd.
9+
* Fix a code path in ``logutil.NTDebugHandler``. By @junkmd.
10+
* Add a deprecation decorator to ``logutil.setup_logging``. By @junkmd.
11+
* Add tests for connection point interfaces. By @junkmd.
12+
* Add tests for ``IGlobalInterfaceTable`` marshaling. By @junkmd.
13+
* Remove outdated Python 2.3 compatibility. By @junkmd.
14+
* Remove unused test utilities. By @junkmd.
15+
* Extract time utility test helpers. By @junkmd.
16+
* Add ``CreateTypeLib`` and ``ICreateTypeInfo`` tests. By @junkmd.
17+
* Add tests for ``VARIANTEnumerator``. By @junkmd.
18+
* Enhance tests for moniker, bind context and running object table. By @junkmd.
19+
* Introduce GDI test helper module and tests for ``IViewObject.Draw``. By @junkmd.
20+
* Unify COM descriptor release logic in ``ITypeComp.Bind``. By @junkmd.
21+
* Enhance dynamic dispatch and ``client`` testing. By @junkmd.
22+
423
Release 1.4.15
524
--------------
625
* Fix ``TYPE_E_ELEMENTNOTFOUND`` HRESULT constant value. By @junkmd.

comtypes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# comtypes version numbers follow semver (http://semver.org/) and PEP 440
2-
__version__ = "1.4.15"
2+
__version__ = "1.4.16"
33

44
try:
55
from _ctypes import COMError # noqa

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
# The short X.Y version.
6161
version = "1.4"
6262
# The full version, including alpha/beta/rc tags.
63-
release = "1.4.15"
63+
release = "1.4.16"
6464

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

0 commit comments

Comments
 (0)