From 448b210055285afca13a04821bc277593c57f0b7 Mon Sep 17 00:00:00 2001 From: Alexander Kozlovsky Date: Thu, 27 Jan 2022 18:07:53 +0100 Subject: [PATCH] PonyORM release 0.7.15 (2022-01-22) # Features * Add Python 3.10 support, drop support of Python < 3.7 * You can create an in-memory SQLite database accessible from multiple threads by specifying ":sharedmemory:" as a file name # Bugfixes * Do not perform optimistic checks when deleting an object (it is OK if it was already deleted by concurrent transaction) * Validation of int fields should take into account field size and check that the value is fit into the range * More tests for hybrid methods added * Fix incorrect assertion check `assert t is translator.` * Fix aggregated query `sum(x.field for x in previous_query)` * #594: Use a clearly synthetic filename when compiling dynamic code to not confuse coverage.py * Use DecompileError exception instead of AssertionError when a function cannot be decompiled --- pony/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pony/__init__.py b/pony/__init__.py index e32a61c0..c25840f9 100644 --- a/pony/__init__.py +++ b/pony/__init__.py @@ -3,7 +3,7 @@ import os, sys from os.path import dirname -__version__ = '0.7.15rc1' +__version__ = '0.7.15' def detect_mode(): try: import google.appengine