From 01d5879bd0c62e07a2fe5376a60c232d9a75f671 Mon Sep 17 00:00:00 2001 From: Jun Komoda <45822440+junkmd@users.noreply.github.com> Date: Sat, 8 Jun 2024 01:27:01 +0900 Subject: [PATCH] Bump version and update change log for 1.4.4 (#558) * update `docs\source\conf.py` * update `comtypes\__init__.py` * update change log for 1.4.4 --- CHANGES.txt | 6 ++++++ comtypes/__init__.py | 2 +- docs/source/conf.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index e151eb27..5b5b0ed2 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,12 @@ Comtypes CHANGELOG ================== +Release 1.4.4 +-------------- +* Stop mentioning the last version supporting Windows CE in ``README.md``. By @forderud. +* Declare the minimum Python version as 3.7. By @jaraco. +* Move package configuration to declarative config. By @jaraco. + Release 1.4.3 -------------- * Refactor ``test_findgendir``. By @junkmd. diff --git a/comtypes/__init__.py b/comtypes/__init__.py index 80f92bf5..3f08c2f2 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.3" +__version__ = "1.4.4" import atexit from ctypes import * diff --git a/docs/source/conf.py b/docs/source/conf.py index a735adf2..928f886a 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.3' +release = '1.4.4' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.