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 # Constants
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
bundled_version = (0,5,3,1) bundled_version = (0,6,0)
libcapnp = "capnproto-c++-%i.%i.%i.%i.tar.gz" % (bundled_version) libcapnp = "capnproto-c++-%i.%i.%i.tar.gz" % (bundled_version)
libcapnp_url = "https://capnproto.org/" + libcapnp libcapnp_url = "https://capnproto.org/" + libcapnp
HERE = os.path.dirname(__file__) HERE = os.path.dirname(__file__)

View File

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