From c3d3e9d4ed9d4633e8aebc71265c3b33694af3f9 Mon Sep 17 00:00:00 2001 From: Alexander Kozlovsky Date: Sat, 19 Jan 2019 17:18:04 +0300 Subject: [PATCH] Update changelog and pony version: 0.7.8-dev -> 0.7.8 --- CHANGELOG.md | 8 ++++++++ pony/__init__.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index acb476677..487eaac27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# PonyORM release 0.7.8 (2019-01-19) + +## Bugfixes + +* #414: prefetching Optional relationships fails on 0.7.7 +* Fix a bug caused by incorrect deduplication of column values + + # PonyORM release 0.7.7 (2019-01-17) ## Major features diff --git a/pony/__init__.py b/pony/__init__.py index 7f7156ef6..b3dc363fd 100644 --- a/pony/__init__.py +++ b/pony/__init__.py @@ -4,7 +4,7 @@ from os.path import dirname from itertools import count -__version__ = '0.7.8-dev' +__version__ = '0.7.8' uid = str(random.randint(1, 1000000))