diff --git a/CHANGES.rst b/CHANGES.rst index 2a88f740..78e5c8fa 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,17 @@ Changes ======= +1.23.0 +------ + +* Added Quart, Sanic, and Falcon as supported ASGI frameworks (thanks to + @sinisaos for this). +* Fixed a bug with very large integers in SQLite. +* Fixed type annotation for ``Timestamptz`` default values (thanks to @Skelmis + for this). + +------------------------------------------------------------------------------- + 1.22.0 ------ diff --git a/piccolo/__init__.py b/piccolo/__init__.py index 43503fd5..5edc72b3 100644 --- a/piccolo/__init__.py +++ b/piccolo/__init__.py @@ -1 +1 @@ -__VERSION__ = "1.22.0" +__VERSION__ = "1.23.0"