diff --git a/CHANGES.txt b/CHANGES.txt index 83828769..86f8f947 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,35 @@ Comtypes CHANGELOG ================== +Release 1.2.0 +-------------- + * Remove all automatic imports of ``numpy``, and make ``numpy`` interop opt-in. By @bennyrowland. + * Move and redefine generating module functions for fixing cross imports. By @junkmd. + * Refactor creating ``__all__`` part in ``codegenerator.Generator.generate_code``. By @junkmd. + * Quit calling ``GetModule`` from ``tools.codegenerator``. By @junkmd. + * Commonize module-creating functions. By @junkmd. + * Shorten the lifetime of ``io.StringIO`` used for code generation. By @junkmd. + * Fix import source of ``Array`` from ``_ctypes`` to ``ctypes``. By @junkmd. + * Add ``for_stub`` mode to ``ImportedNamespaces.getvalue``. By @junkmd. + * Remove ``monkeypatch_COMError``. By @junkmd. + * Remove ``CodeGenerator.need_GUID``. By @junkmd. + * Carve out ``CodeGenerator.type_name`` method to ``TypeNamer`` class. By @junkmd. + * Add ``__known_symbols__`` attributes. By @junkmd. + * Remove ``CodeGenerator.type_name`` calls no longer needed and rename to ``_to_type_name``. By @junkmd. + * Change ``_fix_inout_args`` to module-level top level function. By @junkmd. + * Fix docstring from ``DispInterfaceHead``. By @junkmd. + * ``...METHOD`` and ``...PROPERTY`` return ``_MemberSpec``s instead of ``tuple``s. By @junkmd. + * Make generating ``...property`` DRY. By @junkmd. + * Refactor ``_MemberSpec`` stuffs and separate modules. By @junkmd. + * Carve out ``make_...Method`` and ``make_...Property`` of ``codegenerator``. By @junkmd. + * Removed extra space in ``typeinfo.IRecordInfo._methods_``. By @j0ker70. + * Add type annotations to many modules. By @junkmd. + * Fix type annotations in many modules. By @j0ker70, @muddi900, and @junkmd. + * Delint ``setup.py``. By @jaraco. + * Add ``CONTRIBUTING.md``. By @junkmd. + * Modernize ``README.md`` style. By @junkmd. + * Add announcements of plan for renaming ``master`` branch to ``main`` and dropping Python2 to ``README.md``. By @junkmd. + Release 1.1.14 -------------- * Fix ``SyntaxError`` in generated docstring. Thanks @junkmd. diff --git a/comtypes/__init__.py b/comtypes/__init__.py index 1e5d7619..ec763d69 100644 --- a/comtypes/__init__.py +++ b/comtypes/__init__.py @@ -1,5 +1,5 @@ # comtypes version numbers follow semver (http://semver.org/) and PEP 440 -__version__ = "1.1.14" +__version__ = "1.2.0" import atexit from ctypes import * diff --git a/docs/source/conf.py b/docs/source/conf.py index db2638a3..dc2c4fb2 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '1.1' +version = '1.2' # The full version, including alpha/beta/rc tags. -release = '1.1.14' +release = '1.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages.