Skip to content

Commit

Permalink
Bump version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Dec 16, 2023
1 parent 6b70ac0 commit 0fcd102
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 4 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Change Log

## [3.0.0] - 2023-12-16

### Changed

- Relaxed dependency constraints. [#760](https:/sdispater/pendulum/pull/760)
- The testing helpers are now optional and must be opted-in via the `test` extra. [#778](https:/sdispater/pendulum/pull/778)

### Fixed

- Removed remaining mentions of periods instead of intervals. [#757](https:/sdispater/pendulum/pull/757)
- Fixed the behavior of the `week_of_month` property for edge cases in January and December. [#774](https:/sdispater/pendulum/pull/774)
- Fixed the handling of the `fold` attribute when deep-copying a `DateTime` instance. [#776](https:/sdispater/pendulum/pull/776)
- Fixed errors where hours and days were not handled properly when adding durations. [#775](https:/sdispater/pendulum/pull/775)
- Fixed errors where hours and days were not handled properly when adding durations. [#775](https:/sdispater/pendulum/pull/775)


## [3.0.0b1] - 2023-10-01

### Added
Expand Down Expand Up @@ -184,7 +200,8 @@



[Unreleased]: https:/sdispater/pendulum/compare/3.0.0b1...master
[Unreleased]: https:/sdispater/pendulum/compare/3.0.0...master
[3.0.0]: https:/sdispater/pendulum/releases/tag/3.0.0
[3.0.0b1]: https:/sdispater/pendulum/releases/tag/3.0.0b1
[3.0.0a1]: https:/sdispater/pendulum/releases/tag/3.0.0a1
[2.1.1]: https:/sdispater/pendulum/releases/tag/2.1.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pendulum"
version = "3.0.0b1"
version = "3.0.0"
description = "Python datetimes made easy"
readme = "README.rst"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "_pendulum"
version = "3.0.0-beta-1"
version = "3.0.0"
edition = "2021"

[lib]
Expand Down
2 changes: 1 addition & 1 deletion src/pendulum/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from __future__ import annotations


__version__ = "3.0.0b1"
__version__ = "3.0.0"

0 comments on commit 0fcd102

Please sign in to comment.