diff --git a/CHANGES.txt b/CHANGES.txt index 08259183..e151eb27 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -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. @@ -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 -------------- diff --git a/comtypes/__init__.py b/comtypes/__init__.py index a421ea6f..80f92bf5 100644 --- a/comtypes/__init__.py +++ b/comtypes/__init__.py @@ -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 * diff --git a/docs/source/conf.py b/docs/source/conf.py index 6ba054d2..a735adf2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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.