Skip to content

Commit

Permalink
Merge pull request #69 from enthought/release-1.1.1-prep
Browse files Browse the repository at this point in the history
Release 1.1.1 prep
  • Loading branch information
cfarrow committed Sep 3, 2014
2 parents 35a25a9 + be358a4 commit 6fbb6b5
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
Expand Up @@ -2,6 +2,21 @@ Comtypes CHANGELOG
==================


Release 1.1.1
-------------

* Fixed backwards-incompatible change where empty strings in VARIANTs were
being converted to NULL (#68). Thanks to shgohh for the bug report.
* Fixed npsupport module to fail gracefully when numpy is not present (#62).
Thanks to kyleMR for the patch.
* Fixed low-level property machinery in _comobject (#60).
* Fixed bug where numpy would be imported when using safe arrays (#59). Thanks
to Paul Moore (pfmoore) for submitting the bug and a patch.
* Fixed bug in patching machinery (#57). Thanks to Paul Moore (pfmoore) for
the patch.
* Various documentation cleanups.


Release 1.1.0
-------------

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.0"
__version__ = "1.1.1"

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 @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1.0'
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1.0'
release = '1.1.1'

# 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.0.
This document describes |comtypes| version 1.1.1.

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

0 comments on commit 6fbb6b5

Please sign in to comment.