Skip to content

Commit

Permalink
3.0.0-rc.1
Browse files Browse the repository at this point in the history
Automatically generated by python-semantic-release
  • Loading branch information
semantic-release committed Dec 8, 2024
1 parent 1e55f03 commit 918347f
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 2 deletions.
80 changes: 80 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
2 changes: 1 addition & 1 deletion autoload/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from ._decorators import loadable
from ._loaders import autoload

__version__ = "2.0.0"
__version__ = "3.0.0-rc.1"

__all__ = (
"autoload",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 918347f

Please sign in to comment.