Skip to content

Release v1.4.0 #1215

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
Changelog
=========

1.4.0 (2025-07-04)
------------------

- [ADDED] Added FORMAT_RFC3339_STRICT with a T separator for strict RFC3339 formatting.
- [ADDED] Added Macedonian in Latin locale support.
- [ADDED] Added week and quarter support to Persian/Farsi locale.
- [ADDED] Added weeks support to Catalan locale.
- [CHANGED] Updated to use zoneinfo instead of pytz for timezone handling.
- [CHANGED] Updated shift() method to address issue #1145 with better handling of edge cases.
- [CHANGED] Addressed datetime.utcnow deprecation warning by using recommended alternatives.
- [CHANGED] Removed typing_extensions dependency.
- [CHANGED] Moved dateutil types to test requirements.
- [FIX] Fixed type hint of Arrow.__getattr__ method.
- [FIX] Fixed Persian/Farsi locale with proper month names, month abbreviations, and day abbreviations.
- [FIX] Improved Greek locale translations for "second", "day(s)", and "ago".
- [FIX] Fixed Korean locale spelling and removed poorly used expressions.
- [INTERNAL] Added comprehensive docstrings to parser.py.
- [INTERNAL] Added dependabot for GitHub Actions dependency management.
- [INTERNAL] Updated CI dependencies and added support for newer Python versions.
- [INTERNAL] Bumped various GitHub Actions to latest versions (checkout, setup-python, cache, codecov).
- [INTERNAL] Added documentation link for arrow.format method.

1.3.0 (2023-09-30)
------------------

Expand Down
2 changes: 1 addition & 1 deletion arrow/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.4.0"
Loading