From ed145910156b5c80c5803324e63593be47002692 Mon Sep 17 00:00:00 2001 From: "Christopher L. Farrow" Date: Sat, 11 Jul 2015 14:18:54 -0500 Subject: [PATCH] Preparing for 1.1.2 release. --- CHANGES.txt | 15 +++++++++++++++ comtypes/__init__.py | 2 +- docs/source/conf.py | 4 ++-- docs/source/index.rst | 2 +- 4 files changed, 19 insertions(+), 4 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index fe7eb7c9..2697e315 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,21 @@ Comtypes CHANGELOG ================== +Release 1.1.2 +------------- + + * Fix TypeError when interfaces return a single in-out result (#84). Thanks to + FranOis for the bug report and max-egger for suggesting the fix. + * Fix AttributeError when cleaning up safe arrays at shutdown (#83). Thanks to + mitaa for the bug report and fix. + * Fix 64-bit ULONG_PTR definition in typeinfo module (#82). Thanks to aparamon + for the bug report. + * Add POINTER(BSTR) to supported VARIANT types (#81). This allows the Esri + ArcObjects library to be loaded. Thanks to Matt Wilkie for the patch. + * Properly catch error when attempting to cache code to an unwritable + directory (#78). Thanks to Robin Dunn for the patch. + + Release 1.1.1 ------------- diff --git a/comtypes/__init__.py b/comtypes/__init__.py index 92ee0191..1627e8b7 100644 --- a/comtypes/__init__.py +++ b/comtypes/__init__.py @@ -3,7 +3,7 @@ import os # comtypes version numbers follow semver (http://semver.org/) -__version__ = "1.1.1" +__version__ = "1.1.2" import logging class NullHandler(logging.Handler): diff --git a/docs/source/conf.py b/docs/source/conf.py index 38a95599..df34b906 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -41,7 +41,7 @@ # General information about the project. project = u'comtypes' -copyright = u'2006 - 2013, Thomas Heller; 2014, Comtypes developers.' +copyright = u'2006 - 2013, Thomas Heller; 2014-2015, Comtypes developers.' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the @@ -50,7 +50,7 @@ # The short X.Y version. version = '1.1' # The full version, including alpha/beta/rc tags. -release = '1.1.1' +release = '1.1.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/index.rst b/docs/source/index.rst index 2e05d633..647ee318 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -13,7 +13,7 @@ for *dispatch based* COM interfaces, it is not possible to access The |comtypes| package makes it easy to access and implement both custom and dispatch based COM interfaces. -This document describes |comtypes| version 1.1.1. +This document describes |comtypes| version 1.1.2. NEW: The beginning of the documentation for implementing COM servers in comtypes is here: comtypes_server_