Skip to content

Commit

Permalink
Bump version and update change log for 1.4.2 (enthought#536)
Browse files Browse the repository at this point in the history
* update `docs\source\conf.py`

* update `comtypes\__init__.py`

* update change log for 1.4.2
  • Loading branch information
junkmd authored May 6, 2024
1 parent 6b81d07 commit 3c61129
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Comtypes CHANGELOG
==================

Release 1.4.2
--------------

* Improve the stability of module generation by ``GetModule``. By @junkmd.
* Define ``c_int`` aliases earlier than others in wrapper modules. By @junkmd.
* Remove trailing newlines generated by ``codegenerator`` and ``typeannotator``. By @junkmd.
* Determine whether a interface is one of the known symbols not only by its name but also by using its iid. By @junkmd.
* Add ``Incomplete`` and ``Hresult`` to ``hints.pyi``. By @junkmd.

Release 1.4.1
--------------
* Fix `TypeError` when defining enumeration types
Expand Down
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# comtypes version numbers follow semver (http://semver.org/) and PEP 440
__version__ = "1.4.1"
__version__ = "1.4.2"

import atexit
from ctypes import *
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '1.4'
# The full version, including alpha/beta/rc tags.
release = '1.4.1'
release = '1.4.2'

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

0 comments on commit 3c61129

Please sign in to comment.