Skip to content

Commit 6fcb531

Browse files
committed
Merge pull request #85 from enthought/bump/ver-1.1.2
Preparing for 1.1.2 release.
2 parents 0e21468 + ed14591 commit 6fcb531

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

CHANGES.txt

+15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
Comtypes CHANGELOG
22
==================
33

4+
Release 1.1.2
5+
-------------
6+
7+
* Fix TypeError when interfaces return a single in-out result (#84). Thanks to
8+
FranOis for the bug report and max-egger for suggesting the fix.
9+
* Fix AttributeError when cleaning up safe arrays at shutdown (#83). Thanks to
10+
mitaa for the bug report and fix.
11+
* Fix 64-bit ULONG_PTR definition in typeinfo module (#82). Thanks to aparamon
12+
for the bug report.
13+
* Add POINTER(BSTR) to supported VARIANT types (#81). This allows the Esri
14+
ArcObjects library to be loaded. Thanks to Matt Wilkie for the patch.
15+
* Properly catch error when attempting to cache code to an unwritable
16+
directory (#78). Thanks to Robin Dunn for the patch.
17+
18+
419

520
Release 1.1.1
621
-------------

comtypes/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44

55
# comtypes version numbers follow semver (http://semver.org/)
6-
__version__ = "1.1.1"
6+
__version__ = "1.1.2"
77

88
import logging
99
class NullHandler(logging.Handler):

docs/source/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
# General information about the project.
4343
project = u'comtypes'
44-
copyright = u'2006 - 2013, Thomas Heller; 2014, Comtypes developers.'
44+
copyright = u'2006 - 2013, Thomas Heller; 2014-2015, Comtypes developers.'
4545

4646
# The version info for the project you're documenting, acts as replacement for
4747
# |version| and |release|, also used in various other places throughout the
@@ -50,7 +50,7 @@
5050
# The short X.Y version.
5151
version = '1.1'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '1.1.1'
53+
release = '1.1.2'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

docs/source/index.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ for *dispatch based* COM interfaces, it is not possible to access
1313
The |comtypes| package makes it easy to access and implement both
1414
custom and dispatch based COM interfaces.
1515

16-
This document describes |comtypes| version 1.1.1.
16+
This document describes |comtypes| version 1.1.2.
1717

1818
NEW: The beginning of the documentation for implementing COM servers in
1919
comtypes is here: comtypes_server_

0 commit comments

Comments
 (0)