Skip to content

Commit 2dc690a

Browse files
authored
Bump version and update change log for 1.4.12 (#872)
* Update `docs\source\conf.py`. * Update `comtypes\__init__.py`. * Update change log for 1.4.12.
1 parent 5c564ec commit 2dc690a

File tree

3 files changed

+28
-2
lines changed

3 files changed

+28
-2
lines changed

CHANGES.txt

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

4+
Release 1.4.12
5+
--------------
6+
* Add support for coverage. By @moi15moi.
7+
* CI/CD Improvements for runners and the codecov badge. By @junkmd.
8+
* Add signed 32-bit hexadecimal converters. By @junkmd.
9+
* Add ``Test_Stat`` to ``test_stream``. By @junkmd.
10+
* Add client-side ``RegisterActiveObject``. By @junkmd.
11+
* Remove useless ``object`` inheritance from every class. By @moi15moi.
12+
* Modernize ``super()`` calls by removing explicit class and instance arguments. By @moi15moi.
13+
* Eliminate outdated encoding boilerplates. By @moi15moi.
14+
* Update byte string creation to use ``b""`` instead of ``str.encode("utf-8")``. By @moi15moi.
15+
* Introduce ``codecov.yml``. By @moi15moi.
16+
* Migrate exception catches from older aliases to ``OSError``. By @moi15moi.
17+
* Remove obsolete Python 2 compatibility code in ``test_variant``. By @junkmd.
18+
* Skip ``test_eval`` in INPROC server tests due to instability. By @junkmd.
19+
* Adjust structure sizes and alignments for 64-bit Python in ``viewobject.py``. By @junkmd.
20+
* Add ``test_viewobject``. By @junkmd.
21+
* Ensure ``test_npsupport`` passes with ``numpy>=2.0.0`` by explicitly setting ``dtype=numpy.int32``. By @junkmd.
22+
* Add tests for ``DictPropertyBag`` and type hints for ``IPropertyBag``. By @junkmd.
23+
* Fix ``numpy`` interoperability and enable ``datetime64`` tests. By @junkmd.
24+
* Revive and correct integer handling logic for ``VARIANT``s when setting values. By @junkmd.
25+
* Add tests for ``messageloop``. By @junkmd.
26+
* Revive ``util`` and add comprehensive tests. By @junkmd.
27+
* Refactor and enhance ``util`` with explicit imports and typing. By @junkmd.
28+
* Modernize ``npsupport`` by removing the patch for the ``np._typecodes``. By @junkmd.
29+
430
Release 1.4.11
531
--------------
632
* Improve ``PARAMFLAG_...`` and ``DISPATCH_...`` constants definitions and imports. 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.11"
2+
__version__ = "1.4.12"
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.11"
63+
release = "1.4.12"
6464

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

0 commit comments

Comments
 (0)