Bump version to v0.5.3

This commit is contained in:
Jason Paryani
2015-02-23 11:23:39 -08:00
parent b2daf3911d
commit 7dc6f28ed9
2 changed files with 6 additions and 1 deletions

View File

@@ -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) ## v0.5.2 (2015-02-20)
- Add read\_multiple\_bytes/read\_multiple\_bytes\_packed methods - Add read\_multiple\_bytes/read\_multiple\_bytes\_packed methods
- Added Python 3.4 to the travis build matrix - Added Python 3.4 to the travis build matrix

View File

@@ -20,7 +20,7 @@ _this_dir = os.path.dirname(__file__)
MAJOR = 0 MAJOR = 0
MINOR = 5 MINOR = 5
MICRO = 2 MICRO = 3
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)