File tree Expand file tree Collapse file tree 4 files changed +22
-5
lines changed Expand file tree Collapse file tree 4 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 3.0.0] - 2023-12-16
4+
5+ ### Changed
6+
7+ - Relaxed dependency constraints. [ #760 ] ( https://github.com/sdispater/pendulum/pull/760 )
8+ - The testing helpers are now optional and must be opted-in via the ` test ` extra. [ #778 ] ( https://github.com/sdispater/pendulum/pull/778 )
9+
10+ ### Fixed
11+
12+ - Removed remaining mentions of periods instead of intervals. [ #757 ] ( https://github.com/sdispater/pendulum/pull/757 )
13+ - Fixed the behavior of the ` week_of_month ` property for edge cases in January and December. [ #774 ] ( https://github.com/sdispater/pendulum/pull/774 )
14+ - Fixed the handling of the ` fold ` attribute when deep-copying a ` DateTime ` instance. [ #776 ] ( https://github.com/sdispater/pendulum/pull/776 )
15+ - Fixed errors where hours and days were not handled properly when adding durations. [ #775 ] ( https://github.com/sdispater/pendulum/pull/775 )
16+ - Fixed errors where hours and days were not handled properly when adding durations. [ #775 ] ( https://github.com/sdispater/pendulum/pull/775 )
17+
18+
319## [ 3.0.0b1] - 2023-10-01
420
521### Added
184200
185201
186202
187- [ Unreleased ] : https://github.com/sdispater/pendulum/compare/3.0.0b1...master
203+ [ Unreleased ] : https://github.com/sdispater/pendulum/compare/3.0.0...master
204+ [ 3.0.0 ] : https://github.com/sdispater/pendulum/releases/tag/3.0.0
188205[ 3.0.0b1 ] : https://github.com/sdispater/pendulum/releases/tag/3.0.0b1
189206[ 3.0.0a1 ] : https://github.com/sdispater/pendulum/releases/tag/3.0.0a1
190207[ 2.1.1 ] : https://github.com/sdispater/pendulum/releases/tag/2.1.1
Original file line number Diff line number Diff line change 11[project ]
22name = " pendulum"
3- version = " 3.0.0b1 "
3+ version = " 3.0.0 "
44description = " Python datetimes made easy"
55readme = " README.rst"
66requires-python = " >=3.8"
@@ -34,7 +34,7 @@ Repository = "https://github.com/sdispater/pendulum"
3434
3535[tool .poetry ]
3636name = " pendulum"
37- version = " 3.0.0b1 "
37+ version = " 3.0.0 "
3838description = " Python datetimes made easy"
3939authors = [" Sébastien Eustace <sebastien@eustace.io>" ]
4040license = " MIT"
Original file line number Diff line number Diff line change 11[package ]
22name = " _pendulum"
3- version = " 3.0.0-beta-1 "
3+ version = " 3.0.0"
44edition = " 2021"
55
66[lib ]
Original file line number Diff line number Diff line change 11from __future__ import annotations
22
33
4- __version__ = "3.0.0b1 "
4+ __version__ = "3.0.0 "
You can’t perform that action at this time.
0 commit comments