Skip to content

Commit

Permalink
Bump version to 3.0.0b1
Browse files Browse the repository at this point in the history
  • Loading branch information
sdispater committed Sep 30, 2023
1 parent 5c01d00 commit 1194e7b
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 6 deletions.
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Change Log

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

### Added

- Made `instance()` support all native types (date, time, datetime). [#732](https://github.com/sdispater/pendulum/pull/732)

### Changed

- Dropped support for Python 3.7. [#734](https://github.com/sdispater/pendulum/pull/734)
- Rewrote extensions in Rust. [#721](https://github.com/sdispater/pendulum/pull/721)
- Made day of week convention more consistent across the codebase. [#731](https://github.com/sdispater/pendulum/pull/731)

### Fixed

- Fixed datetime string representation to match the native library. [#733](https://github.com/sdispater/pendulum/pull/733)
- Fixed issues on some system when retrieving the local timezone. [#733](https://github.com/sdispater/pendulum/pull/733)
- Fixed DST handling in `start_of()/end_of()` methods. [#713](https://github.com/sdispater/pendulum/pull/713)


## [3.0.0a1] - 2022-11-23

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



[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0a1...master
[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0b1...master
[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
[2.1.0]: https://github.com/sdispater/pendulum/releases/tag/2.1.0
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.0a1"
version = "3.0.0b1"
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.0a1"
version = "3.0.0b1"
description = "Python datetimes made easy"
authors = ["Sébastien Eustace <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

0 comments on commit 1194e7b

Please sign in to comment.