Skip to content

Commit

Permalink
Release 3.0.0 (#780)
Browse files Browse the repository at this point in the history
* Bump version to 3.0.0

* Bump version for poetry metadata
  • Loading branch information
sdispater committed Dec 16, 2023
1 parent 6b70ac0 commit 3e3fec6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 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://github.com/sdispater/pendulum/pull/760)
- The testing helpers are now optional and must be opted-in via the `test` extra. [#778](https://github.com/sdispater/pendulum/pull/778)

### Fixed

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


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

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



[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0b1...master
[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0...master
[3.0.0]: https://github.com/sdispater/pendulum/releases/tag/3.0.0
[3.0.0b1]: https://github.com/sdispater/pendulum/releases/tag/3.0.0b1
[3.0.0a1]: https://github.com/sdispater/pendulum/releases/tag/3.0.0a1
[2.1.1]: https://github.com/sdispater/pendulum/releases/tag/2.1.1
Expand Down
4 changes: 2 additions & 2 deletions 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 Expand Up @@ -34,7 +34,7 @@ Repository = "https://github.com/sdispater/pendulum"

[tool.poetry]
name = "pendulum"
version = "3.0.0b1"
version = "3.0.0"
description = "Python datetimes made easy"
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
license = "MIT"
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 3e3fec6

Please sign in to comment.