diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b5daf6ed..f1329c49 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,31 @@ Changelog ========= +1.4.0 (2025-10-02) +------------------ + +- [ADDED] Added ``week_start`` parameter to ``floor()`` and ``ceil()`` methods. `PR #1222 `_ +- [ADDED] Added ``FORMAT_RFC3339_STRICT`` with a T separator. `PR #1201 `_ +- [ADDED] Added Macedonian in Latin locale support. `PR #1200 `_ +- [ADDED] Added Persian/Farsi locale support. `PR #1190 `_ +- [ADDED] Added week and weeks to Thai locale timeframes. `PR #1218 `_ +- [ADDED] Added weeks to Catalan locale. `PR #1189 `_ +- [ADDED] Added Persian names of months, month-abbreviations and day-abbreviations in Gregorian calendar. `PR #1172 `_ +- [CHANGED] Migrated Arrow to use ZoneInfo for timezones instead of pytz. `PR #1217 `_ +- [FIXED] Fixed humanize month limits. `PR #1224 `_ +- [FIXED] Fixed type hint of ``Arrow.__getattr__``. `PR #1171 `_ +- [FIXED] Fixed spelling and removed poorly used expressions in Korean locale. `PR #1181 `_ +- [FIXED] Updated ``shift()`` method for issue #1145. `PR #1194 `_ +- [FIXED] Improved Greek locale translations (seconds, days, "ago", and month typo). `PR #1184 `_, `PR #1186 `_ +- [FIXED] Addressed ``datetime.utcnow`` deprecation warning. `PR #1182 `_ +- [INTERNAL] Added codecov test results. `PR #1223 `_ +- [INTERNAL] Updated CI dependencies (actions/setup-python, actions/checkout, codecov/codecov-action, actions/cache). +- [INTERNAL] Added docstrings to parser.py. `PR #1010 `_ +- [INTERNAL] Updated Python versions support and bumped CI dependencies. `PR #1177 `_ +- [INTERNAL] Added dependabot for GitHub actions. `PR #1193 `_ +- [INTERNAL] Moved dateutil types to test requirements. `PR #1183 `_ +- [INTERNAL] Added documentation link for ``arrow.format``. `PR #1180 `_ + 1.3.0 (2023-09-30) ------------------ diff --git a/arrow/_version.py b/arrow/_version.py index 67bc602a..3e8d9f94 100644 --- a/arrow/_version.py +++ b/arrow/_version.py @@ -1 +1 @@ -__version__ = "1.3.0" +__version__ = "1.4.0"