Merge branch 'release/0.4.4' into develop

This commit is contained in:
Jason Paryani
2014-04-25 11:04:37 -07:00
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
## v0.4.4 (2014-04-25)
- Fix compilation problem with gcc 4.8
## v0.4.3 (2014-02-18)
- Fix problem with uninitialized unions in \_from\_dict
- Add accesible version numbers for C++ libcapnp

View File

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