Skip to content

Commit

Permalink
Pony ORM Release 0.6.4 (2016-02-10)
Browse files Browse the repository at this point in the history
This release brings no new features, has no backward incompatible changes, only bug fixes.
If you are using obj.flush() method in your code we recommend you to upgrade to 0.6.4 release.
  • Loading branch information
kozlovsky committed Feb 10, 2016
2 parents e4af68c + 285adca commit 6a5ca75
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
# Pony ORM Release 0.6.3 (2016-02-05)
# Pony ORM Release 0.6.4 (2016-02-10)

This release brings no new features, has no backward incompatible changes, only bug fixes.
If you are using obj.flush() method in your code we recommend you to upgrade to 0.6.3 release.
If you are using obj.flush() method in your code we recommend you to upgrade to 0.6.4 release.

## Bugfixes

* #161: 0.6.3 + obj.flush(): after_insert, after_update & after_delete hooks do not work

# Pony ORM Release 0.6.3 (2016-02-05)

This release was intended to fix the behavior of obj.flush(), but failed to do it in a proper way.
Please skip this release and update to 0.6.4 if you are using obj.flush() method.

## 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 sys
from os.path import dirname

__version__ = '0.6.3'
__version__ = '0.6.4'

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

0 comments on commit 6a5ca75

Please sign in to comment.