Skip to content

Commit 3e3fec6

Browse files
authored
Release 3.0.0 (python-pendulum#780)
* Bump version to 3.0.0 * Bump version for poetry metadata
1 parent 6b70ac0 commit 3e3fec6

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

CHANGELOG.md

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
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
@@ -184,7 +200,8 @@
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

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pendulum"
3-
version = "3.0.0b1"
3+
version = "3.0.0"
44
description = "Python datetimes made easy"
55
readme = "README.rst"
66
requires-python = ">=3.8"
@@ -34,7 +34,7 @@ Repository = "https://github.com/sdispater/pendulum"
3434

3535
[tool.poetry]
3636
name = "pendulum"
37-
version = "3.0.0b1"
37+
version = "3.0.0"
3838
description = "Python datetimes made easy"
3939
authors = ["Sébastien Eustace <[email protected]>"]
4040
license = "MIT"

rust/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "_pendulum"
3-
version = "3.0.0-beta-1"
3+
version = "3.0.0"
44
edition = "2021"
55

66
[lib]

src/pendulum/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from __future__ import annotations
22

33

4-
__version__ = "3.0.0b1"
4+
__version__ = "3.0.0"

0 commit comments

Comments
 (0)