Skip to content

Commit

Permalink
Merge pull request #221 from vasily-v-ryabov/prepare_1_1_8
Browse files Browse the repository at this point in the history
Prepare for 1.1.8 (bump version and update release notes)
  • Loading branch information
vasily-v-ryabov authored Dec 25, 2020
2 parents 47da408 + 37d3b05 commit e5eeb5e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
11 changes: 11 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
Comtypes CHANGELOG
==================

Release 1.1.8
-------------
* Fix No module named 'comtypes.gen.stdole'. Thanks @fxthomas.
* Fix NumPy >= 1.16 support. Thanks @mobiusklein.
* Use the embedded timestamp for cache invalidation. Thanks @vijairaj.
* Allow customization of shutdown behavior (It fixes crash during exit in applications that embed Python). Thanks @lassoan.
* Extend GetModule() with CLSID support. Thanks @forderud.
* Fix invalid handling of WindowsError on Python 3. Thanks @leonardder.
* End bdist_wininst support in setup.py. Thanks @wkschwartz.
* Drop Windows CE support. Thanks @forderud.

Release 1.1.7
-------------
* Fix command ``pip install comtypes --no-cache-dir --target="C:\tmp"`` (issue #158).
Expand Down
4 changes: 2 additions & 2 deletions README
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ FFI library, in less than 10000 lines of code (not counting the
tests).

**comtypes** allows to define, call, and implement custom and
dispatch-based COM interfaces in pure Python. It works on Windows,
64-bit Windows, and Windows CE.
dispatch-based COM interfaces in pure Python. It works on Windows and
64-bit Windows. Windows CE support was dropped since comtypes==1.1.8.

Documentation:

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/) and PEP 440
__version__ = "1.1.7"
__version__ = "1.1.8"

import logging
class NullHandler(logging.Handler):
Expand Down

0 comments on commit e5eeb5e

Please sign in to comment.