Skip to content

Commit a0a8813

Browse files
committed
PonyORM release 0.7.15-RC1 (2022-01-10)
# Features * Add Python 3.10 support, drop support of Python < 3.7 # 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
1 parent 0cccfa0 commit a0a8813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pony/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os, sys
44
from os.path import dirname
55

6-
__version__ = '0.7.15-dev'
6+
__version__ = '0.7.15rc1'
77

88
def detect_mode():
99
try: import google.appengine

0 commit comments

Comments
 (0)