Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version and update change log for 1.4.5 #581

Merged
merged 3 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
Comtypes CHANGELOG
==================

Release 1.4.5
--------------
* Split ``__init__.py`` into some modules. By @junkmd.
* Fix importing ``_DispMemberSpec`` in ``automation``. By @junkmd.
* Fix importing ``_encode_idl`` in ``_comobject``. By @junkmd.
* Change the name of the component that implements the interface for record parameter testing. By @geppi.
* Implement ``SAFEARRAY`` pointers and ``SAFEARRAY``s as method parameters of a Dispatch Interface. By @geppi.
* Change the default value of the ``extra`` parameter in the ``create`` method of ``tagSAFEARRAY`` subtypes. By @geppi.
* Implement static import for ``ISequentialStream``. By jonschz.
* Modernize ``test_wmi``. By @junkmd.
* Add static typing for ``_midlSAFEARRAY``. By @junkmd.

Release 1.4.4
--------------
* Stop mentioning the last version supporting Windows CE in ``README.md``. By @forderud.
Expand Down
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.4"
__version__ = "1.4.5"

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 @@ -50,7 +50,7 @@
# The short X.Y version.
version = '1.4'
# The full version, including alpha/beta/rc tags.
release = '1.4.4'
release = '1.4.5'

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