Skip to content

Commit

Permalink
Pony ORM Release 0.6.3 (2016-02-05)
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.3 release.
Blog post: https://blog.ponyorm.com/2016/02/05/pony-orm-release-0-6-3/
  • Loading branch information
kozlovsky committed Feb 5, 2016
2 parents 7aaaa2c + 113dc0b commit e98b97f
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 @@
# Pony ORM Release 0.6.3 (2016-02-05)

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.

## Bugfixes

* Fixes #138 Incorrect behavior of obj.flush(): assertion failed after exception
* Fixes #157 Incorrect transaction state after obj.flush() caused "release unlocked lock" error in SQLite
* Fixes #151 SQLite + upper() or lower() does not work as expected


# Pony ORM Release 0.6.2 (2016-01-11)

The documentation was moved from this repo to a separate one at https://github.com/ponyorm/pony-doc
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-dev'
__version__ = '0.6.3'

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

0 comments on commit e98b97f

Please sign in to comment.