diff --git a/CHANGELOG.md b/CHANGELOG.md index 9464ead..eb7690e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## v0.5.2 (2015-02-23) +- Fix possible crash due to bad destructor ordering in MessageReader (by @JohnEmhoff) +- Default to no longer using cython + + ## v0.5.2 (2015-02-20) - Add read\_multiple\_bytes/read\_multiple\_bytes\_packed methods - Added Python 3.4 to the travis build matrix diff --git a/setup.py b/setup.py index 9041997..3a467c6 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ _this_dir = os.path.dirname(__file__) MAJOR = 0 MINOR = 5 -MICRO = 2 +MICRO = 3 VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)