diff --git a/CHANGELOG.md b/CHANGELOG.md index 58ef000..aa40a97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # 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 + `.color`: fix `chalk` not behaving as expected diff --git a/src/suou/__init__.py b/src/suou/__init__.py index 387cd8b..1b64def 100644 --- a/src/suou/__init__.py +++ b/src/suou/__init__.py @@ -38,7 +38,7 @@ from .http import WantsContentType from .color import chalk, WebColor -__version__ = "0.7.9" +__version__ = "0.7.10" __all__ = ( diff --git a/src/suou/peewee.py b/src/suou/peewee.py index f1a3f1e..c086f95 100644 --- a/src/suou/peewee.py +++ b/src/suou/peewee.py @@ -18,7 +18,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. from contextvars import ContextVar from typing import Iterable from playhouse.shortcuts import ReconnectMixin -from peewee import CharField, Database, MySQLDatabase, _ConnectionState +from peewee import CharField, Database, Field, MySQLDatabase, _ConnectionState import re from suou.iding import Siq