Skip to content

Commit 5654994

Browse files
authored
Pre-release version bumps and changelog update (#936)
1 parent 754ed58 commit 5654994

File tree

4 files changed

+32
-3
lines changed

4 files changed

+32
-3
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# Change Log
22

3+
## [3.2.0] - 2026-01-29
4+
5+
### Added
6+
- Added support for Python 3.14 [#923](https://github.com/python-pendulum/pendulum/pull/923)
7+
- Added upper limit to `time-machine` dependency [#931](https://github.com/python-pendulum/pendulum/pull/931)
8+
9+
### Changed
10+
- Optimize usage of `re.` methods [#741](https://github.com/python-pendulum/pendulum/pull/741)
11+
- Fixed `pendulum.parse` not being marked as exported [#693](https://github.com/python-pendulum/pendulum/pull/693)
12+
- Fixed `pendulum.parse('now', tz='...')` ignoring the timezone [#701](https://github.com/python-pendulum/pendulum/pull/701)
13+
- Use `pathlib` to read Unix TZ data [#742](https://github.com/python-pendulum/pendulum/pull/742)
14+
- Fixed `Interval` deepcopying [#850](https://github.com/python-pendulum/pendulum/pull/850)
15+
- Fixed typo in `end_of('century')` docs [#910](https://github.com/python-pendulum/pendulum/pull/910)
16+
- Bumped PyO3 to 0.27 [#922](https://github.com/python-pendulum/pendulum/pull/922)
17+
- Fixed incorrect date offset calculation in Rust extensions [#918](https://github.com/python-pendulum/pendulum/pull/918)
18+
- Changed locales and `pytest` to be lazy loaded [#926](https://github.com/python-pendulum/pendulum/pull/926)
19+
- Fixed error of `Duration` deepcopy not including weeks [#933](https://github.com/python-pendulum/pendulum/pull/933)
20+
- Fixed empty `Duration`s not being an error in Python ISO8601 parser implementation [#903](https://github.com/python-pendulum/pendulum/pull/903)
21+
- Fixed parsing invalid interval string [#860](https://github.com/python-pendulum/pendulum/pull/860)
22+
- Fixed pluralization bug in `Duration.in_words()` [#826](https://github.com/python-pendulum/pendulum/pull/826)
23+
24+
### Locales
25+
- Added HI (Hindi) locale [#902](https://github.com/python-pendulum/pendulum/pull/902)
26+
27+
### Removed
28+
- Removed dependency on `pytz` [#911](https://github.com/python-pendulum/pendulum/pull/911)
29+
330
## [3.1.0] - 2025-04-19
431

532
### Added
@@ -220,6 +247,8 @@
220247

221248

222249
[Unreleased]: https://github.com/python-pendulum/pendulum/compare/3.1.0...master
250+
[3.2.0]: https://github.com/python-pendulum/pendulum/releases/tag/3.2.0
251+
[3.1.0]: https://github.com/python-pendulum/pendulum/releases/tag/3.1.0
223252
[3.1.0]: https://github.com/python-pendulum/pendulum/releases/tag/3.1.0
224253
[3.0.0]: https://github.com/python-pendulum/pendulum/releases/tag/3.0.0
225254
[3.0.0b1]: https://github.com/python-pendulum/pendulum/releases/tag/3.0.0b1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pendulum"
3-
version = "3.2.0.dev0"
3+
version = "3.2.0"
44
description = "Python datetimes made easy"
55
readme = "README.rst"
66
requires-python = ">=3.9"

rust/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "_pendulum"
3-
version = "3.2.0-dev0"
3+
version = "3.2.0"
44
edition = "2021"
55

66
[lib]

0 commit comments

Comments
 (0)