Skip to content

Commit

Permalink
Bump version and update change log for 1.1.13 (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
vasily-v-ryabov committed Aug 8, 2022
1 parent 2121c7b commit 096bfde
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGES.txt
@@ -1,6 +1,20 @@
Comtypes CHANGELOG
==================

Release 1.1.13
--------------
* Many fixes in code generator. Thanks @junkmd.
* Make tests runnable on AppVeyor CI. Many improvements in tests. Thanks @junkmd and @dmwyatt.
* Update (bound_)named_property args and attributes names to be similar to builtin property. Thanks @junkmd.
* Refactor function ``GetModule`` and fix type lib timestamping for incomplete generated module. Thanks @junkmd.
* Fix recent numpy versions support. Thanks @mworion.
* Split ``Constants`` into a separate module. Thanks @junkmd.
* ``client.GetModule`` can take a one liner containing lib UUID. Thanks @junkmd.
* Use ``Generator.imports`` instead of ``Generator._externals``. Thanks @junkmd.
* Rename README to README.md. Thanks @junkmd and @filipporomani.
* No patching or modifying ``typedesc.Obj.name`` in ``tools.codegenerator``. Thanks @junkmd.
* Load enumerations into ``client.Constants``. Thanks @junkmd.

Release 1.1.12
--------------
* Fix ``_pack_`` being returned as a float. Thanks @kdschlosser.
Expand Down
2 changes: 1 addition & 1 deletion comtypes/__init__.py
Expand Up @@ -3,7 +3,7 @@
import os

# comtypes version numbers follow semver (http://semver.org/) and PEP 440
__version__ = "1.1.12"
__version__ = "1.1.13"

if sys.version_info >= (3, 0):
text_type = str
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -50,7 +50,7 @@
# The short X.Y version.
version = '1.1'
# The full version, including alpha/beta/rc tags.
release = '1.1.12'
release = '1.1.13'

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

0 comments on commit 096bfde

Please sign in to comment.