Skip to content

Commit

Permalink
Merge pull request #85 from enthought/bump/ver-1.1.2
Browse files Browse the repository at this point in the history
Preparing for 1.1.2 release.
  • Loading branch information
cfarrow committed Jul 11, 2015
2 parents 0e21468 + ed14591 commit 6fcb531
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -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
-------------
Expand Down
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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_
Expand Down

0 comments on commit 6fcb531

Please sign in to comment.