Skip to content

Commit

Permalink
Bump version and update change log for 1.2.1 (#501)
Browse files Browse the repository at this point in the history
* Bump version and update change log for 1.2.1

* Remove Python >=3.3, <=3.6 from CI pipeline
  • Loading branch information
vasily-v-ryabov committed Jan 4, 2024
1 parent 033d6e8 commit ee187e9
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 10 deletions.
8 changes: 8 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Comtypes CHANGELOG
==================

Release 1.2.1
--------------
* Replace ``distutils`` with ``setuptools``. By @junkmd.
* Add Python 3.12 testing into CI pipeline. By @junkmd.
* Set long description type to "markdown" to fix PyPI description rendering. By @junkmd.
* Add ``hints.pyi`` to ``package_data`` in ``setup.py`` which copies ``hints.pyi`` to correct install location. By @junkmd.
* Remove Python >=3.3, <=3.6 from CI pipeline. By @vasily-v-ryabov.

Release 1.2.0
--------------
* Remove all automatic imports of ``numpy``, and make ``numpy`` interop opt-in. By @bennyrowland.
Expand Down
12 changes: 4 additions & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,10 @@ environment:
matrix:
- py: Python27
- py: Python27-x64
- py: Python33
- py: Python33-x64
- py: Python34
- py: Python34-x64
- py: Python35
- py: Python35-x64
- py: Python36
- py: Python36-x64
- py: Python37
- py: Python37-x64
- py: Python38
- py: Python38-x64
- py: Python39
- py: Python39-x64
- py: Python310
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.2.0"
__version__ = "1.2.1"

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.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.0'
release = '1.2.1'

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

0 comments on commit ee187e9

Please sign in to comment.