From 57e4f24d9951ee6deae754e7451ca96a9b447163 Mon Sep 17 00:00:00 2001 From: Vasily Ryabov Date: Fri, 19 Aug 2022 11:55:40 +0300 Subject: [PATCH] Bump version to 1.1.14 and update change log (#341) --- CHANGES.txt | 4 ++++ comtypes/__init__.py | 2 +- docs/source/conf.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index ce5f4185..83828769 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,10 @@ Comtypes CHANGELOG ================== +Release 1.1.14 +-------------- + * Fix ``SyntaxError`` in generated docstring. Thanks @junkmd. + Release 1.1.13 -------------- * Many fixes in code generator. Thanks @junkmd. diff --git a/comtypes/__init__.py b/comtypes/__init__.py index 9d1cdfa5..4ae3345c 100644 --- a/comtypes/__init__.py +++ b/comtypes/__init__.py @@ -3,7 +3,7 @@ import os # comtypes version numbers follow semver (http://semver.org/) and PEP 440 -__version__ = "1.1.13" +__version__ = "1.1.14" if sys.version_info >= (3, 0): text_type = str diff --git a/docs/source/conf.py b/docs/source/conf.py index be9d000a..db2638a3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -50,7 +50,7 @@ # The short X.Y version. version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.1.13' +release = '1.1.14' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.