Bump version for v0.4.5. Add changes to changelog

This commit is contained in:
Jason Paryani
2014-09-10 11:02:33 -07:00
parent e8ddfb9e91
commit 287945dfc0
2 changed files with 4 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
## v0.4.6 (2014-9-10)
- Fix build for new 0.21 release of Cython. 0.21 is now the minimum supported version of Cython.
## v0.4.5 (2014-6-26) ## v0.4.5 (2014-6-26)
- Fix `to_dict` not converting enums to strings - Fix `to_dict` not converting enums to strings

View File

@@ -18,7 +18,7 @@ import os
MAJOR = 0 MAJOR = 0
MINOR = 4 MINOR = 4
MICRO = 5 MICRO = 6
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO) VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
def write_version_py(filename=None): def write_version_py(filename=None):