From 7e6a46c654e5eb58e715bd49053c936a764fb190 Mon Sep 17 00:00:00 2001 From: Yusur Princeps Date: Sun, 23 Nov 2025 21:52:01 +0100 Subject: [PATCH] 0.10.1 fix missing imports --- CHANGELOG.md | 4 ++++ src/suou/__init__.py | 2 +- src/suou/peewee.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 56d279b..aa40a97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 0.10.1 and 0.7.10 + ++ `peewee`: fix missing imports + ## 0.10.0 + `peewee`: add `SnowflakeField` class diff --git a/src/suou/__init__.py b/src/suou/__init__.py index df20b7b..a5a166b 100644 --- a/src/suou/__init__.py +++ b/src/suou/__init__.py @@ -37,7 +37,7 @@ from .redact import redact_url_password from .http import WantsContentType from .color import chalk, WebColor -__version__ = "0.10.0" +__version__ = "0.10.1" __all__ = ( 'ConfigOptions', 'ConfigParserConfigSource', 'ConfigSource', 'ConfigValue', diff --git a/src/suou/peewee.py b/src/suou/peewee.py index 830ffaf..2ef623c 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 BigIntegerField, CharField, Database, MySQLDatabase, _ConnectionState +from peewee import BigIntegerField, CharField, Database, Field, MySQLDatabase, _ConnectionState import re from suou.iding import Siq