From 4dfcafd6746e3446c4432d533632d745bd1d9400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Eustace?= Date: Wed, 23 Nov 2022 22:38:02 +0100 Subject: [PATCH] Bump version to 3.0.0a1 --- .github/workflows/release.yml | 2 +- CHANGELOG.md | 25 ++++++++++++++++++++++++- pyproject.toml | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a1b06343..59062ae8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,7 +31,7 @@ jobs: path: ./dist/* Release: - needs: [ build-wheel ] + needs: [ build ] runs-on: ubuntu-latest steps: diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bb58a3e..ae719916 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## [3.0.0a1] - 2022-11-23 + +### Added + +- Added new testing helpers to time travel. [#626](https://github.com/sdispater/pendulum/pull/626) + +### Changed + +- Dropped support for Python 2.7, 3.5 and 3.6. [#569](https://github.com/sdispater/pendulum/pull/569) +- The `Timezone` class now relies on the native `zoneinfo.ZoneInfo` class. [#569](https://github.com/sdispater/pendulum/pull/569) +- Renamed the `Period` class to `Interval`. [#676](https://github.com/sdispater/pendulum/pull/676) +- Renamed the `period` helper to `interval`. [#676](https://github.com/sdispater/pendulum/pull/676) +- Removed existing testing helpers: `test()` and `set_test_now()`. [#626](https://github.com/sdispater/pendulum/pull/626) + +### Locales + +- Added the `sk` locale. [#575](https://github.com/sdispater/pendulum/pull/575) +- Added the `ja` locale. [#610](https://github.com/sdispater/pendulum/pull/610) +- Added the `he` locale. [#585](https://github.com/sdispater/pendulum/pull/585) +- Added the `sv` locale. [#562](https://github.com/sdispater/pendulum/pull/562) + + ## [2.1.1] - 2020-07-13 ### Fixed @@ -143,7 +165,8 @@ -[Unreleased]: https://github.com/sdispater/pendulum/compare/2.1.1...master +[Unreleased]: https://github.com/sdispater/pendulum/compare/3.0.0a1...master +[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 [2.0.5]: https://github.com/sdispater/pendulum/releases/tag/2.0.5 diff --git a/pyproject.toml b/pyproject.toml index b17a2a22..a61cae0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pendulum" -version = "3.0.0a0" +version = "3.0.0a1" description = "Python datetimes made easy" authors = ["Sébastien Eustace "] license = "MIT"