Skip to content

Commit

Permalink
Bump version and update change log for 1.4.9 (#732)
Browse files Browse the repository at this point in the history
* Update the documentation link.

* Update `docs\source\conf.py`.

* Update `comtypes\__init__.py`.

* Update change log for 1.4.9.
  • Loading branch information
junkmd authored Jan 6, 2025
1 parent 2ec5946 commit fc2792e
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
Comtypes CHANGELOG
==================

Release 1.4.9
--------------
* Separate patch processing within ``_com_interface_meta`` into a module. By @junkmd.
* Replace ``Literal`` and ``Protocol`` with runtime-referable symbols. By @junkmd.
* Refactor from ``%`` string formatting to f-strings in many modules. By @newwingbird.
* Refactor from ``%`` string formatting to f-strings in ``_post_coinit.unknwn``. By @junkmd.
* Remove the script entry point in ``comtypes.shelllink``. By @cosmastech.
* Move the modules that define IDL stuff and ``instancemethod``. By @junkmd.
* Allow the definition of the ``_midlSAFEARRAY(HRESULT)`` type. By @davidschranz.
* Split ``server/w_getopt.py`` into production code and test code. By @junkmd.
* Add docstrings to the module defining the ``GUID`` symbol. By @junkmd.
* Fix broken unregistration of 64bit type libraries. By @forderud.
* Replace alias definitions with ``ctypes.wintypes`` imports. By @fmtabler.
* Revive ``pywin32`` related tests. By @junkmd.
* Revive comserver related tests. By @junkmd.
* Separate the part that creates entries from ``server.register.Registrar`` and refactor it. By @junkmd.
* Add ``Test_Registrar_...``. By @junkmd.
* Many typing improvements. By @junkmd.
* Separate ``vtbl`` creation within ``_comobject`` into a module. By @junkmd.
* Migrate the documentation from PythonHosted to ReadTheDocs. By @junkmd.

Release 1.4.8
--------------
* Remove Python 3.7 and add Python 3.13 to the CI pipelines. By @junkmd.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,4 +80,4 @@ However, if the script implementation does not use `comtypes.client.GetModule` o

## Documentation

The documentation is currently hosted [here](https://pythonhosted.org/comtypes) on PythonHosted.
The documentation is currently hosted [here](https://comtypes.readthedocs.io/) on ReadTheDocs.
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# comtypes version numbers follow semver (http://semver.org/) and PEP 440
__version__ = "1.4.8"
__version__ = "1.4.9"

try:
from _ctypes import COMError # noqa
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# The short X.Y version.
version = "1.4"
# The full version, including alpha/beta/rc tags.
release = "1.4.8"
release = "1.4.9"

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

0 comments on commit fc2792e

Please sign in to comment.