From 289ecba0beeee8d35f7d3cb5782f0d286094cabc Mon Sep 17 00:00:00 2001 From: Alessandro Molina Date: Sat, 4 Feb 2023 17:17:01 +0000 Subject: [PATCH] Version 1.12.1 --- CHANGELOG | 14 ++++++++++++++ beaker/__init__.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 55df46f0..c7876c93 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,17 @@ +Release 1.12.1 (2023-01-04) +=========================== + +* Fix ext:database backend failing to initialize. +* Improved inline code documentation for the crypto module. + +Release 1.12.0 (2022-12-07) +=========================== + +* Enabled testing on Python 3.10 and 3.11 +* Fixed issue #122 - Session ignores deserializer json +* Remove ID generation fallback for when the uuid module is not found +* Port testing from nose to pytest +* Fixed issue #180 - KeyError when loading deleted session Release 1.11.0 (2019-08-26) =========================== diff --git a/beaker/__init__.py b/beaker/__init__.py index 666b2f71..fe70fa28 100644 --- a/beaker/__init__.py +++ b/beaker/__init__.py @@ -1 +1 @@ -__version__ = '1.12.0' +__version__ = '1.12.1'