From 87a1a774aad0505d9da18ad1d16f6e571f262503 Mon Sep 17 00:00:00 2001 From: Jad Chaar Date: Sat, 30 Sep 2023 15:03:06 -0700 Subject: [PATCH] Bump version and add changelog --- CHANGELOG.rst | 14 +++++++++++++- arrow/_version.py | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5b079798..b5daf6ed 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,12 +1,24 @@ Changelog ========= +1.3.0 (2023-09-30) +------------------ + +- [ADDED] Added official support for Python 3.11 and 3.12. +- [ADDED] Added dependency on ``types-python-dateutil`` to improve Arrow mypy compatibility. `PR #1102 `_ +- [FIX] Updates to Italian, Romansh, Hungarian, Finish and Arabic locales. +- [FIX] Handling parsing of UTC prefix in timezone strings. +- [CHANGED] Update documentation to improve readability. +- [CHANGED] Dropped support for Python 3.6 and 3.7, which are end-of-life. +- [INTERNAL] Migrate from ``setup.py``/Twine to ``pyproject.toml``/Flit for packaging and distribution. +- [INTERNAL] Adopt ``.readthedocs.yaml`` configuration file for continued ReadTheDocs support. + 1.2.3 (2022-06-25) ------------------ - [NEW] Added Amharic, Armenian, Georgian, Laotian and Uzbek locales. - [FIX] Updated Danish locale and associated tests. -- [INTERNAl] Small fixes to CI. +- [INTERNAL] Small fixes to CI. 1.2.2 (2022-01-19) ------------------ diff --git a/arrow/_version.py b/arrow/_version.py index 10aa336c..67bc602a 100644 --- a/arrow/_version.py +++ b/arrow/_version.py @@ -1 +1 @@ -__version__ = "1.2.3" +__version__ = "1.3.0"