Skip to content

Commit

Permalink
Bump version to 0.2.0rc2 (#368)
Browse files Browse the repository at this point in the history
Update the Neuropod version to `0.2.0rc2`
  • Loading branch information
VivekPanyam authored May 29, 2020
1 parent af1a687 commit e180f66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build/wheel/build_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.0rc1",
NEUROPOD_VERSION="0.2.0rc2",
SHARED_LIBRARY_NAME=shared_library_name,
LIBS=str(members),
PLATFORM=platform,
Expand Down
4 changes: 2 additions & 2 deletions source/neuropod/version.hh
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ namespace neuropod

// These are allowed to be 4 bits each
#define NEUROPOD_RELEASE_LEVEL NEUROPOD_RELEASE_LEVEL_RELEASE_CANDIDATE
#define NEUROPOD_RELEASE_SERIAL 1
#define NEUROPOD_RELEASE_SERIAL 2

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.0rc1"
#define NEUROPOD_VERSION "0.2.0rc2"

// Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
// Use this for numeric comparisons
Expand Down
2 changes: 1 addition & 1 deletion source/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def has_ext_modules(foo):

setup(
name="neuropod",
version="0.2.0rc1",
version="0.2.0rc2",
install_requires=REQUIRED_PACKAGES,
packages=find_packages(),
package_data={'': ["neuropod_native.so", "libneuropod.so", "neuropod_multiprocess_worker"]},
Expand Down

0 comments on commit e180f66

Please sign in to comment.