Skip to content

Commit

Permalink
PonyORM release 0.7.10 (2019-04-20)
Browse files Browse the repository at this point in the history
# Bugfixes

* Python3.7 and PyPy decompiling fixes
* Fix reading NULL from Optional nullable array column
* Fix handling of empty arrays in queries
* #415: error message typo
* #432: PonyFlask - request object can trigger teardown_request without real request
* Fix GROUP CONCAT separator for MySQL
  • Loading branch information
kozlovsky committed Apr 20, 2019
2 parents b4b338d + 884d517 commit b991846
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
# PonyORM release 0.7.10 (2019-04-20)

## Bugfixes

* Python3.7 and PyPy decompiling fixes
* Fix reading NULL from Optional nullable array column
* Fix handling of empty arrays in queries
* #415: error message typo
* #432: PonyFlask - request object can trigger teardown_request without real request
* Fix GROUP CONCAT separator for MySQL


# PonyORM release 0.7.9 (2019-01-21)

## Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion pony/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os, sys
from os.path import dirname

__version__ = '0.7.10-dev'
__version__ = '0.7.10'

def detect_mode():
try: import google.appengine
Expand Down

0 comments on commit b991846

Please sign in to comment.