From 918347fb3534f773a68a53b3bd8de1f17454dce7 Mon Sep 17 00:00:00 2001 From: semantic-release Date: Sun, 8 Dec 2024 08:09:40 +0000 Subject: [PATCH] 3.0.0-rc.1 Automatically generated by python-semantic-release --- CHANGELOG.md | 80 ++++++++++++++++++++++++++++++++++++++++++++ autoload/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 82 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..d114c67 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,80 @@ +# CHANGELOG + + +## v3.0.0-rc.1 (2024-12-08) + +### Build System + +- Drop support python 3.8 + ([`f0ddfde`](https://github.com/hiroki0525/autoload_module/commit/f0ddfdeaf1d2e2d79b3b3886bbd12d7b4464a6f5)) + +BREAKING CHANGE: drop support python 3.8 + +### Features + +- Add support Python 3.12 + ([`a0c8b4a`](https://github.com/hiroki0525/autoload_module/commit/a0c8b4abdbd834eb68412bda45794bfa90011dd7)) + +- Add support Python 3.13 + ([`4efdcd8`](https://github.com/hiroki0525/autoload_module/commit/4efdcd8d7c1c3628e171c7f38664888b17b65cf7)) + +- Simplify library interface + ([`0980c75`](https://github.com/hiroki0525/autoload_module/commit/0980c75ab35f0418aeb1d7c858377eb4dfc9e0b9)) + +BREAKING CHANGE: simplify library interface. See new README.md + +### Performance Improvements + +- Remove raise error because of typing hints + ([`abbeb2b`](https://github.com/hiroki0525/autoload_module/commit/abbeb2b275ac86f0b83b83932a904b4db8d59c0a)) + +### BREAKING CHANGES + +- Drop support python 3.8 + +- Simplify library interface. See new README.md + + +## v2.0.0 (2023-06-16) + + +## v1.7.2 (2021-07-07) + + +## v1.7.1 (2021-06-12) + + +## v1.7.0 (2021-06-10) + + +## v1.6.0 (2021-06-06) + + +## v1.5.0 (2021-05-30) + + +## v1.4.0 (2021-05-27) + + +## v1.3.3 (2021-05-23) + + +## v1.3.2 (2021-05-21) + + +## v1.3.1 (2021-05-15) + + +## v1.3.0 (2021-05-11) + + +## v1.2.0 (2021-01-19) + + +## v1.1.1 (2020-12-07) + + +## v1.1.0 (2020-11-03) + + +## v1.0.1 (2020-08-25) diff --git a/autoload/__init__.py b/autoload/__init__.py index 23bbaa7..fa1b0c3 100644 --- a/autoload/__init__.py +++ b/autoload/__init__.py @@ -1,7 +1,7 @@ from ._decorators import loadable from ._loaders import autoload -__version__ = "2.0.0" +__version__ = "3.0.0-rc.1" __all__ = ( "autoload", diff --git a/pyproject.toml b/pyproject.toml index 639f361..b442afb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "autoload-module" -version = "2.0.0" +version = "3.0.0-rc.1" description = "Python Autoload Module" authors = ["Hiroki Miyaji "] license = "MIT"