diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6298e09..6e068e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,29 @@ Changelog ========= +v1.2.2 (2023-11-15) +------------------- + +Feat +~~~~ +- (bin): Update publish script. + +- (doc): Update copyright. + +- (test): Use `unittest` for testing instead `nose`. + +- (core): Add support for python 3.10 and 3.11. + +- (doc): Add Read the Docs configuration file. + + +Fix +~~~ +- (parser): Avoid leaving open file. + +- (doc): Remove broken badge. + + v1.2.1 (2022-05-10) ------------------- diff --git a/README.rst b/README.rst index 03c269d..3d25b49 100644 --- a/README.rst +++ b/README.rst @@ -6,8 +6,8 @@ xlref: Excel table reader. |pypi_ver| |test_status| |cover_status| |docs_status| |github_issues| |python_ver| |proj_license| -:release: 1.2.1 -:date: 2022-05-10 09:55:00 +:release: 1.2.2 +:date: 2023-11-15 11:30:00 :repository: https://github.com/vinci1it2000/xlref :pypi-repo: https://pypi.org/project/xlref/ :docs: http://xlref.readthedocs.io/ diff --git a/xlref/_version.py b/xlref/_version.py index ddb6cc7..061e81f 100644 --- a/xlref/_version.py +++ b/xlref/_version.py @@ -10,11 +10,11 @@ '__license__', '__copyright__'] #: Authoritative project's PEP 440 version. -__version__ = version = "1.2.1" # Also update README.rst +__version__ = version = "1.2.2" # Also update README.rst # Please UPDATE TIMESTAMP WHEN BUMPING VERSIONS AND BEFORE RELEASE. #: Release date. -__updated__ = "2022-05-10 09:55:00" +__updated__ = "2023-11-15 11:30:00" __title__ = 'xlref'