File tree 4 files changed +22
-5
lines changed
4 files changed +22
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
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
+
3
19
## [ 3.0.0b1] - 2023-10-01
4
20
5
21
### Added
184
200
185
201
186
202
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
188
205
[ 3.0.0b1 ] : https://github.com/sdispater/pendulum/releases/tag/3.0.0b1
189
206
[ 3.0.0a1 ] : https://github.com/sdispater/pendulum/releases/tag/3.0.0a1
190
207
[ 2.1.1 ] : https://github.com/sdispater/pendulum/releases/tag/2.1.1
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " pendulum"
3
- version = " 3.0.0b1 "
3
+ version = " 3.0.0 "
4
4
description = " Python datetimes made easy"
5
5
readme = " README.rst"
6
6
requires-python = " >=3.8"
@@ -34,7 +34,7 @@ Repository = "https://github.com/sdispater/pendulum"
34
34
35
35
[tool .poetry ]
36
36
name = " pendulum"
37
- version = " 3.0.0b1 "
37
+ version = " 3.0.0 "
38
38
description = " Python datetimes made easy"
39
39
authors = [
" Sébastien Eustace <[email protected] >" ]
40
40
license = " MIT"
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " _pendulum"
3
- version = " 3.0.0-beta-1 "
3
+ version = " 3.0.0"
4
4
edition = " 2021"
5
5
6
6
[lib ]
Original file line number Diff line number Diff line change 1
1
from __future__ import annotations
2
2
3
3
4
- __version__ = "3.0.0b1 "
4
+ __version__ = "3.0.0 "
You can’t perform that action at this time.
0 commit comments