0.7.10 fix missing imports

This commit is contained in:
Yusur 2025-11-23 21:52:01 +01:00
parent d454eaea2c
commit 764efd9530
3 changed files with 17 additions and 2 deletions

View file

@ -1,5 +1,20 @@
# Changelog # Changelog
## 0.10.1 and 0.7.10
+ `peewee`: fix missing imports
## 0.10.0
+ `peewee`: add `SnowflakeField` class
## 0.9.0
+ Fix to make experimental `Waiter` usable
+ Suspend `glue()` release indefinitely
+ Add `yesno()`
+ Document validators
## 0.8.2 and 0.7.9 ## 0.8.2 and 0.7.9
+ `.color`: fix `chalk` not behaving as expected + `.color`: fix `chalk` not behaving as expected

View file

@ -38,7 +38,7 @@ from .http import WantsContentType
from .color import chalk, WebColor from .color import chalk, WebColor
__version__ = "0.7.9" __version__ = "0.7.10"
__all__ = ( __all__ = (

View file

@ -18,7 +18,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
from contextvars import ContextVar from contextvars import ContextVar
from typing import Iterable from typing import Iterable
from playhouse.shortcuts import ReconnectMixin from playhouse.shortcuts import ReconnectMixin
from peewee import CharField, Database, MySQLDatabase, _ConnectionState from peewee import CharField, Database, Field, MySQLDatabase, _ConnectionState
import re import re
from suou.iding import Siq from suou.iding import Siq