Update bundled capnproto to 0.6.0

This commit is contained in:
Ben Moran 2017-06-08 12:19:52 +01:00
parent fbc1767475
commit 1221ec75a9
2 changed files with 4 additions and 4 deletions

View file

@ -35,8 +35,8 @@ pjoin = os.path.join
# Constants
#-----------------------------------------------------------------------------
bundled_version = (0,5,3,1)
libcapnp = "capnproto-c++-%i.%i.%i.%i.tar.gz" % (bundled_version)
bundled_version = (0,6,0)
libcapnp = "capnproto-c++-%i.%i.%i.tar.gz" % (bundled_version)
libcapnp_url = "https://capnproto.org/" + libcapnp
HERE = os.path.dirname(__file__)

View file

@ -13,8 +13,8 @@ from distutils.extension import Extension
_this_dir = os.path.dirname(__file__)
MAJOR = 0
MINOR = 5
MICRO = 12
MINOR = 6
MICRO = 0
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)