diff --git a/build/wheel/build_wheel.py b/build/wheel/build_wheel.py index 45d5a320..bc30d94d 100644 --- a/build/wheel/build_wheel.py +++ b/build/wheel/build_wheel.py @@ -66,7 +66,7 @@ def package(package_name, tar_path, platform, platform_version): content = content.format( PACKAGE_NAME=package_name, # TODO(vip): Update this to get a version from a central location - NEUROPOD_VERSION="0.2.0rc0", + NEUROPOD_VERSION="0.2.0rc1", SHARED_LIBRARY_NAME=shared_library_name, LIBS=str(members), PLATFORM=platform, diff --git a/source/neuropod/version.hh b/source/neuropod/version.hh index 450a8057..82c694ce 100644 --- a/source/neuropod/version.hh +++ b/source/neuropod/version.hh @@ -21,13 +21,13 @@ namespace neuropod // These are allowed to be 4 bits each #define NEUROPOD_RELEASE_LEVEL NEUROPOD_RELEASE_LEVEL_RELEASE_CANDIDATE -#define NEUROPOD_RELEASE_SERIAL 0 +#define NEUROPOD_RELEASE_SERIAL 1 static_assert(NEUROPOD_RELEASE_LEVEL < 16, "NEUROPOD_RELEASE_LEVEL must be in the range 0 to 15 (4 bits)"); static_assert(NEUROPOD_RELEASE_SERIAL < 16, "NEUROPOD_RELEASE_SERIAL must be in the range 0 to 15 (4 bits)"); // The version as a string -#define NEUROPOD_VERSION "0.2.0rc0" +#define NEUROPOD_VERSION "0.2.0rc1" // Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2. // Use this for numeric comparisons diff --git a/source/python/setup.py b/source/python/setup.py index e07b0acf..56d4ccb0 100644 --- a/source/python/setup.py +++ b/source/python/setup.py @@ -10,7 +10,7 @@ def has_ext_modules(foo): setup( name="neuropod", - version="0.2.0rc0", + version="0.2.0rc1", install_requires=REQUIRED_PACKAGES, packages=find_packages(), package_data={'': ["neuropod_native.so", "libneuropod.so", "neuropod_multiprocess_worker"]},