File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 11Comtypes 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+
426Release 1.4.10
527--------------
628* Replace ``GetModuleFileNameA`` with ``GetModuleFileNameW`` to prevent a ``TypeError``. By @junkmd.
Original file line number Diff line number Diff line change 11# comtypes version numbers follow semver (http://semver.org/) and PEP 440
2- __version__ = "1.4.10 "
2+ __version__ = "1.4.11 "
33
44try :
55 from _ctypes import COMError # noqa
Original file line number Diff line number Diff line change 6161# The short X.Y version.
6262version = "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.
You can’t perform that action at this time.
0 commit comments