Skip to content

Commit 5e4733d

Browse files
authored
Bump version and update change log for 1.4.11 (#838)
* Update `docs\source\conf.py`. * Update `comtypes\__init__.py`. * Update change log for 1.4.11.
1 parent 430bbdc commit 5e4733d

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

CHANGES.txt

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

4+
Release 1.4.11
5+
--------------
6+
* Improve ``PARAMFLAG_...`` and ``DISPATCH_...`` constants definitions and imports. By @junkmd.
7+
* Introduce the ``_CDataType`` alias from typeshed. By @junkmd.
8+
* Replace ``260`` literals/constant definitions with imports from ``ctypes.wintypes.MAX_PATH``. By @junkmd.
9+
* Replace ``client._code_cache._get_module_filename`` with ``typeinfo.GetModuleFileName``. By @junkmd.
10+
* Improve ``client._code_cache.SHGetSpecialFolderPath`` definition. By @junkmd.
11+
* Add type annotations to many modules. By @junkmd.
12+
* Add constants to many modules. By @junkmd.
13+
* Improve import block styles to many modules. By @junkmd.
14+
* Add ``SupportErrorInfoTest`` to ``test_comserver``. By @junkmd.
15+
* Add ``test_errorinfo``. By @junkmd.
16+
* Improve the type safety of ``errorinfo.ReportException``. By @junkmd.
17+
* Change the method of retrieving the values of each field in ``_...MemberSpec`` from unpacking to dot access. By @junkmd.
18+
* Split ``server.connectionpoints.ConnectionPointImpl._call_sinks``. By @junkmd.
19+
* Refactor ``create_vtbl_mapping``, ``create_dispimpl`` and ``_encode_idl``. By @junkmd.
20+
* Add ``test_hresult``. By @junkmd.
21+
* Add ``Test_Vtbl`` to ``test_comobject.py``. By @junkmd.
22+
* Delint ``IUnknown_AddRef`` and ``IUnknown_Release``. By @junkmd.
23+
* Convert ``assertRaises`` usage to context manager for improved readability. By @junkmd.
24+
* Remove the unused ``PATH`` variable from ``client/_generate.py``. By @moi15moi.
25+
426
Release 1.4.10
527
--------------
628
* Replace ``GetModuleFileNameA`` with ``GetModuleFileNameW`` to prevent a ``TypeError``. 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.10"
2+
__version__ = "1.4.11"
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
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = "1.4"
6363
# The full version, including alpha/beta/rc tags.
64-
release = "1.4.10"
64+
release = "1.4.11"
6565

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

0 commit comments

Comments
 (0)