Skip to content

Commit 1194e7b

Browse files
committed
Bump version to 3.0.0b1
1 parent 5c01d00 commit 1194e7b

File tree

5 files changed

+26
-6
lines changed

5 files changed

+26
-6
lines changed

CHANGELOG.md

+21-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,24 @@
11
# Change Log
22

3+
## [3.0.0b1] - 2023-10-01
4+
5+
### Added
6+
7+
- Made `instance()` support all native types (date, time, datetime). [#732](https://github.com/sdispater/pendulum/pull/732)
8+
9+
### Changed
10+
11+
- Dropped support for Python 3.7. [#734](https://github.com/sdispater/pendulum/pull/734)
12+
- Rewrote extensions in Rust. [#721](https://github.com/sdispater/pendulum/pull/721)
13+
- Made day of week convention more consistent across the codebase. [#731](https://github.com/sdispater/pendulum/pull/731)
14+
15+
### Fixed
16+
17+
- Fixed datetime string representation to match the native library. [#733](https://github.com/sdispater/pendulum/pull/733)
18+
- Fixed issues on some system when retrieving the local timezone. [#733](https://github.com/sdispater/pendulum/pull/733)
19+
- Fixed DST handling in `start_of()/end_of()` methods. [#713](https://github.com/sdispater/pendulum/pull/713)
20+
21+
322
## [3.0.0a1] - 2022-11-23
423

524
### Added
@@ -165,7 +184,8 @@
165184

166185

167186

168-
[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0a1...master
187+
[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0b1...master
188+
[3.0.0b1]: https://github.com/sdispater/pendulum/releases/tag/3.0.0b1
169189
[3.0.0a1]: https://github.com/sdispater/pendulum/releases/tag/3.0.0a1
170190
[2.1.1]: https://github.com/sdispater/pendulum/releases/tag/2.1.1
171191
[2.1.0]: https://github.com/sdispater/pendulum/releases/tag/2.1.0

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.0a1"
3+
version = "3.0.0b1"
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.0a1"
37+
version = "3.0.0b1"
3838
description = "Python datetimes made easy"
3939
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
4040
license = "MIT"

rust/Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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-alpha-1"
3+
version = "3.0.0-beta-1"
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.0a"
4+
__version__ = "3.0.0b1"

0 commit comments

Comments
 (0)