From 1ddc2ee7276a6aa58e9bf8f17b8fc9fa670eefa3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Fri, 13 May 2022 07:53:15 -0700 Subject: [PATCH] chore(release): prepare for v7.9.20 --- CHANGELOG.md | 29 +++++++++++++++++++++++++++++ README.md | 2 +- src/system/__version__.py | 4 ++-- 3 files changed, 32 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85d16f8..6cb6f2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,35 @@ All notable changes to this project will be documented in this file. +## [7.9.20] - 2022-04-14 + +### Bug Fixes + +- update type hint for `html` arg (#17) ([8c9666d](https://github.com/ignition-api/7.9/commit/8c9666d1ed83dc1c6470c9263a70cb83eeda5f1d)) + +### CI + +- update build action (#6) ([9a09177](https://github.com/ignition-api/7.9/commit/9a09177f179a7172614ab586e99e827bb78eb542)) +- add dependabot (#7) ([b338831](https://github.com/ignition-api/7.9/commit/b33883107ccccb99151f481969ab42019197d5e8)) +- use `deps` scope for pre-commit.ci (#10) ([921f20b](https://github.com/ignition-api/7.9/commit/921f20bf01896c8f451ebbcd59749311bc32a900)) + +### Documentation + +- use pepy.tech for counting downloads (#12) ([1536717](https://github.com/ignition-api/7.9/commit/1536717548be7490ef800ca189da941edbe5c4c0)) +- add link to org CONTRIBUTING.md (#13) ([d9738ce](https://github.com/ignition-api/7.9/commit/d9738ce5201dc7c9c314dad843994354f104e303)) + +### Miscellaneous Tasks + +- update `setup.cfg` to include `CHANGELOG.md` (#5) ([87e2edd](https://github.com/ignition-api/7.9/commit/87e2eddaf2c4055f0ac322bfff3bc779b6c3239c)) + +### Build + +- bump actions/setup-python from 2 to 3 (#8) ([acac6f3](https://github.com/ignition-api/7.9/commit/acac6f35f8099b603256a3bc189a2b419f92f5de)) +- bump actions/checkout from 2 to 3 (#9) ([4e79b47](https://github.com/ignition-api/7.9/commit/4e79b47648a10a817a32d825baf2f6aa2658271d)) +- bump .pylintrc from 2.12.2 to 2.13.2 (#11) ([021ddde](https://github.com/ignition-api/7.9/commit/021ddde4a0f577862a3dad9dd15d75577876accb)) +- pre-commit autoupdate (#14) ([2041bb4](https://github.com/ignition-api/7.9/commit/2041bb4150d886492886d7aba2eae76e06061a7d)) +- update pylint configuration (#15) ([0abbfa7](https://github.com/ignition-api/7.9/commit/0abbfa7c160395c153ce64c81ae46c8425b4060a)) + ## [7.9.19] - 2022-03-16 ### CI diff --git a/README.md b/README.md index 5251b33..36a31e7 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ To use Ignition, you may install it by doing any of the following. The preferred method is to install it by running `pip`. It requires Python 2.7.18. ```bash -python2 -m pip install ignition-api==7.9.19 +python2 -m pip install ignition-api==7.9.20 ``` This will install it as package to your Python installation, which will allow you to call Ignition Scripting functions from Python's REPL, and get code completion using an IDE such as PyCharm and Visual Studio Code. diff --git a/src/system/__version__.py b/src/system/__version__.py index 3f1f60f..63f3e1b 100644 --- a/src/system/__version__.py +++ b/src/system/__version__.py @@ -1,6 +1,6 @@ """Package information.""" -__version__ = "7.9.19" -__build__ = "2022031509" +__version__ = "7.9.20" +__build__ = "2022051210" __cycle__ = "" __package_version__ = "{0}{1}".format(__version__, __cycle__)