Skip to content

Commit 07ab1f4

Browse files
authored
Bump version and update change log for 1.4.15 (#908)
* Update `docs/source/conf.py`. * Update `comtypes/__init__.py`. * Update change log for 1.4.15.
1 parent 7008819 commit 07ab1f4

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGES.txt

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

4+
Release 1.4.15
5+
--------------
6+
* Fix ``TYPE_E_ELEMENTNOTFOUND`` HRESULT constant value. By @junkmd.
7+
* Enhance ``ITypeInfo`` testing in ``test_typeinfo.py``. By @junkmd.
8+
* Improve type hints for for generated dispmethods and properties. By @junkmd.
9+
* Enhance tests for generated type hints. By @junkmd.
10+
* Remove Internet Explorer dependency from ``test_QueryService.py`` and ``test_casesensitivity.py``. By @junkmd.
11+
* Rename ``test_ie.py`` to ``test_eventinterface.py``. By @junkmd.
12+
* Fix ``SyntaxError`` in ``DispMethodAnnotator`` signature generation. By @junkmd.
13+
* Rename ``test_msi.py`` to ``test_puredispatch.py``. By @junkmd.
14+
* Rename ``test_wmi.py`` to ``test_variant_outparam.py``. By @junkmd.
15+
* Replace the module-level skip with individual ``@skip`` decorators on the test methods in ``test_eventinterface.py``. By @junkmd.
16+
* Add tests for ``stdole.IPicture`` creation through ``IStream``. By @junkmd.
17+
* Improve enum testing in ``test_client.py``. By @junkmd.
18+
* Revive and enhance ``test_outparam``. By @junkmd.
19+
* Enhance ``test_stream``. By @junkmd.
20+
* Enhance ``test_storage``. By @junkmd.
21+
* Add ``malloc`` module. By @junkmd.
22+
* Enhance and refactor COM moniker tests. By @junkmd.
23+
* Refine type hints and enhance tests for ``client.GetClassObject``, ``CoGetClassObject`` and ``IClassFactory``. By @junkmd.
24+
* Implement ``ITypeInfo.AddressOfMember`` with tests and clarifications. By @junkmd.
25+
* Enhance ``ITypeComp.Bind`` tests and type hints. By @junkmd.
26+
* Introduce warnings for Python 3.15 enum compatibility. By @junkmd.
27+
428
Release 1.4.14
529
--------------
630
* Replace ``setup.py`` with ``pyproject.toml``. By @moi15moi.

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.14"
2+
__version__ = "1.4.15"
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.14"
63+
release = "1.4.15"
6464

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

0 commit comments

Comments
 (0)