Skip to content

Commit 4dfcafd

Browse files
committed
Bump version to 3.0.0a1
1 parent 9d06ff3 commit 4dfcafd

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
path: ./dist/*
3232

3333
Release:
34-
needs: [ build-wheel ]
34+
needs: [ build ]
3535
runs-on: ubuntu-latest
3636

3737
steps:

CHANGELOG.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Change Log
22

3+
## [3.0.0a1] - 2022-11-23
4+
5+
### Added
6+
7+
- Added new testing helpers to time travel. [#626](https://github.com/sdispater/pendulum/pull/626)
8+
9+
### Changed
10+
11+
- Dropped support for Python 2.7, 3.5 and 3.6. [#569](https://github.com/sdispater/pendulum/pull/569)
12+
- The `Timezone` class now relies on the native `zoneinfo.ZoneInfo` class. [#569](https://github.com/sdispater/pendulum/pull/569)
13+
- Renamed the `Period` class to `Interval`. [#676](https://github.com/sdispater/pendulum/pull/676)
14+
- Renamed the `period` helper to `interval`. [#676](https://github.com/sdispater/pendulum/pull/676)
15+
- Removed existing testing helpers: `test()` and `set_test_now()`. [#626](https://github.com/sdispater/pendulum/pull/626)
16+
17+
### Locales
18+
19+
- Added the `sk` locale. [#575](https://github.com/sdispater/pendulum/pull/575)
20+
- Added the `ja` locale. [#610](https://github.com/sdispater/pendulum/pull/610)
21+
- Added the `he` locale. [#585](https://github.com/sdispater/pendulum/pull/585)
22+
- Added the `sv` locale. [#562](https://github.com/sdispater/pendulum/pull/562)
23+
24+
325
## [2.1.1] - 2020-07-13
426

527
### Fixed
@@ -143,7 +165,8 @@
143165

144166

145167

146-
[Unreleased]: https://github.com/sdispater/pendulum/compare/2.1.1...master
168+
[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0a1...master
169+
[3.0.0a1]: https://github.com/sdispater/pendulum/releases/tag/3.0.0a1
147170
[2.1.1]: https://github.com/sdispater/pendulum/releases/tag/2.1.1
148171
[2.1.0]: https://github.com/sdispater/pendulum/releases/tag/2.1.0
149172
[2.0.5]: https://github.com/sdispater/pendulum/releases/tag/2.0.5

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pendulum"
3-
version = "3.0.0a0"
3+
version = "3.0.0a1"
44
description = "Python datetimes made easy"
55
authors = ["Sébastien Eustace <sebastien@eustace.io>"]
66
license = "MIT"

0 commit comments

Comments
 (0)