Bump version for v0.4.5. Add changes to changelog

This commit is contained in:
Jason Paryani 2014-06-26 00:57:11 -07:00
parent 1eafc412a8
commit ecb703eae0
2 changed files with 4 additions and 1 deletions

View file

@ -1,3 +1,6 @@
## v0.4.5 (2014-6-26)
- Fix `to_dict` not converting enums to strings
## v0.4.4 (2014-04-25)
- Fix compilation problem with gcc 4.8

View file

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