Skip to content

Commit fc2792e

Browse files
authored
Bump version and update change log for 1.4.9 (#732)
* Update the documentation link. * Update `docs\source\conf.py`. * Update `comtypes\__init__.py`. * Update change log for 1.4.9.
1 parent 2ec5946 commit fc2792e

File tree

4 files changed

+24
-3
lines changed

4 files changed

+24
-3
lines changed

CHANGES.txt

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

4+
Release 1.4.9
5+
--------------
6+
* Separate patch processing within ``_com_interface_meta`` into a module. By @junkmd.
7+
* Replace ``Literal`` and ``Protocol`` with runtime-referable symbols. By @junkmd.
8+
* Refactor from ``%`` string formatting to f-strings in many modules. By @newwingbird.
9+
* Refactor from ``%`` string formatting to f-strings in ``_post_coinit.unknwn``. By @junkmd.
10+
* Remove the script entry point in ``comtypes.shelllink``. By @cosmastech.
11+
* Move the modules that define IDL stuff and ``instancemethod``. By @junkmd.
12+
* Allow the definition of the ``_midlSAFEARRAY(HRESULT)`` type. By @davidschranz.
13+
* Split ``server/w_getopt.py`` into production code and test code. By @junkmd.
14+
* Add docstrings to the module defining the ``GUID`` symbol. By @junkmd.
15+
* Fix broken unregistration of 64bit type libraries. By @forderud.
16+
* Replace alias definitions with ``ctypes.wintypes`` imports. By @fmtabler.
17+
* Revive ``pywin32`` related tests. By @junkmd.
18+
* Revive comserver related tests. By @junkmd.
19+
* Separate the part that creates entries from ``server.register.Registrar`` and refactor it. By @junkmd.
20+
* Add ``Test_Registrar_...``. By @junkmd.
21+
* Many typing improvements. By @junkmd.
22+
* Separate ``vtbl`` creation within ``_comobject`` into a module. By @junkmd.
23+
* Migrate the documentation from PythonHosted to ReadTheDocs. By @junkmd.
24+
425
Release 1.4.8
526
--------------
627
* Remove Python 3.7 and add Python 3.13 to the CI pipelines. By @junkmd.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ However, if the script implementation does not use `comtypes.client.GetModule` o
8080

8181
## Documentation
8282

83-
The documentation is currently hosted [here](https://pythonhosted.org/comtypes) on PythonHosted.
83+
The documentation is currently hosted [here](https://comtypes.readthedocs.io/) on ReadTheDocs.

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.8"
2+
__version__ = "1.4.9"
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.8"
64+
release = "1.4.9"
6565

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

0 commit comments

Comments
 (0)