Skip to content

chore(master): release 3.0.0 #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [3.0.0](https://github.com/ooliver1/botbase/compare/v2.0.3...v3.0.0) (2023-08-29)


### ⚠ BREAKING CHANGES

* piccolo

### Features

* migrations ([01c6e63](https://github.com/ooliver1/botbase/commit/01c6e63855fa6a642e39b7211ecdfcccaa3048e9))
* piccolo ([1764aaf](https://github.com/ooliver1/botbase/commit/1764aafa6022dba1eeceb87d738b55e1afff9810))


### Bug Fixes

* actually return handler ([b72c501](https://github.com/ooliver1/botbase/commit/b72c501f647a90bbff855eec3c24da8ac50abcd9))
* **botbase:** dont open and close db now ([079a76f](https://github.com/ooliver1/botbase/commit/079a76f73cf7eb452639e8c180aa7ecd0fc45ed6))
* **log-commands:** add parameters ([bac1ab3](https://github.com/ooliver1/botbase/commit/bac1ab343d58898346cca2944e3687aa0d10147f))
* psutil linux only ([b7330d7](https://github.com/ooliver1/botbase/commit/b7330d733342a1743ab1cfc54fbd5ba2c3989ef9))
* remove file logging ([631c203](https://github.com/ooliver1/botbase/commit/631c20326335a62080b20f84825288a1d747af79))

## [2.0.3](https://github.com/ooliver1/botbase/compare/v2.0.2...v2.0.3) (2023-05-14)


Expand Down
2 changes: 1 addition & 1 deletion botbase/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from .models import *
from .wraps import *

__version__ = "2.0.3" # x-release-please-version
__version__ = "3.0.0" # x-release-please-version


getLogger(__name__).addHandler(NullHandler())
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 = "ooliver-botbase"
version = "2.0.3"
version = "3.0.0"
description = "A personal nextcord bot base package for bots."
authors = ["ooliver1 <[email protected]>"]
license = "MIT"
Expand Down