From 73dfa94b9d02f16619f7aa429004137221c6d376 Mon Sep 17 00:00:00 2001 From: junkmd Date: Thu, 11 Apr 2024 08:15:04 +0900 Subject: [PATCH 1/3] update `docs\source\conf.py` --- docs/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/conf.py b/docs/source/conf.py index f7585442..3e58ccfd 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.0' +release = '1.4.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. From 659c9b616e26dd9cbbb9af0a543017baf7673b62 Mon Sep 17 00:00:00 2001 From: junkmd Date: Thu, 11 Apr 2024 08:15:28 +0900 Subject: [PATCH 2/3] update `comtypes\__init__.py` --- comtypes/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/comtypes/__init__.py b/comtypes/__init__.py index 884b9440..37c730d0 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.0" +__version__ = "1.4.1" import atexit from ctypes import * From 96c8b2e59312954e66df59ff4f95505e5108c907 Mon Sep 17 00:00:00 2001 From: junkmd Date: Thu, 11 Apr 2024 08:15:49 +0900 Subject: [PATCH 3/3] update change log for 1.4.1 --- CHANGES.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 66485db1..de7c53b5 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,10 @@ Comtypes CHANGELOG ================== +Release 1.4.1 +-------------- +* Fix `TypeError` when defining enumeration types + Release 1.4.0 -------------- * Add enumeration definitions in generated friendly modules. By @junkmd.