Skip to content

Commit

Permalink
Bump version and update change log for 1.4.3 (#553)
Browse files Browse the repository at this point in the history
* update `docs\source\conf.py`

* update `comtypes\__init__.py`

* update change log for 1.4.3
and small typo fixes
  • Loading branch information
junkmd authored Jun 3, 2024
1 parent 601ff0f commit ce0e393
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
18 changes: 16 additions & 2 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,23 @@
Comtypes CHANGELOG
==================

Release 1.4.2
Release 1.4.3
--------------
* Refactor ``test_findgendir``. By @junkmd.
* Update ``test_GUID``. By @junkmd.
* Add a feature to ``typeannotator`` that interprets the return value. By @junkmd.
* Update type annotations for ``_IUnknown_Base`` and ``IUnknown``. By @junkmd.
* Add ``groupby_impltypeflags``. By @junkmd.
* Add static typing for when a ``CoClass`` is assigned as the return value type. By @junkmd.
* Improve ``EnumerationNamespaces`` and ``CodeGenerator.enum_aliases``. By @junkmd.
* Modernize constructor arguments and attributes of each stuff in ``typedesc``. By @junkmd.
* Split ``codegenerator`` into some modules in the sub-package directory. By @junkmd.
* Implement record pointers as method parameters of a Dispatch Interface. By @geppi.
* Add ``npsupport`` to CI pipeline matrix. By @junkmd.
* Add "Frequently Asked Questions" to ``README.md``. By @junkmd.

Release 1.4.2
--------------
* Improve the stability of module generation by ``GetModule``. By @junkmd.
* Define ``c_int`` aliases earlier than others in wrapper modules. By @junkmd.
* Remove trailing newlines generated by ``codegenerator`` and ``typeannotator``. By @junkmd.
Expand All @@ -12,7 +26,7 @@ Release 1.4.2

Release 1.4.1
--------------
* Fix `TypeError` when defining enumeration types
* Fix ``TypeError`` when defining enumeration types. By @junkmd.

Release 1.4.0
--------------
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.2"
__version__ = "1.4.3"

import atexit
from ctypes import *
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.2'
release = '1.4.3'

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

0 comments on commit ce0e393

Please sign in to comment.