Skip to content

Commit 9c3be22

Browse files
authored
Bump version to 0.2.0rc1 (#335)
Update the Neuropod version to `0.2.0rc1`
1 parent e9ed202 commit 9c3be22

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

build/wheel/build_wheel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def package(package_name, tar_path, platform, platform_version):
6666
content = content.format(
6767
PACKAGE_NAME=package_name,
6868
# TODO(vip): Update this to get a version from a central location
69-
NEUROPOD_VERSION="0.2.0rc0",
69+
NEUROPOD_VERSION="0.2.0rc1",
7070
SHARED_LIBRARY_NAME=shared_library_name,
7171
LIBS=str(members),
7272
PLATFORM=platform,

source/neuropod/version.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ namespace neuropod
2121

2222
// These are allowed to be 4 bits each
2323
#define NEUROPOD_RELEASE_LEVEL NEUROPOD_RELEASE_LEVEL_RELEASE_CANDIDATE
24-
#define NEUROPOD_RELEASE_SERIAL 0
24+
#define NEUROPOD_RELEASE_SERIAL 1
2525

2626
static_assert(NEUROPOD_RELEASE_LEVEL < 16, "NEUROPOD_RELEASE_LEVEL must be in the range 0 to 15 (4 bits)");
2727
static_assert(NEUROPOD_RELEASE_SERIAL < 16, "NEUROPOD_RELEASE_SERIAL must be in the range 0 to 15 (4 bits)");
2828

2929
// The version as a string
30-
#define NEUROPOD_VERSION "0.2.0rc0"
30+
#define NEUROPOD_VERSION "0.2.0rc1"
3131

3232
// Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.
3333
// Use this for numeric comparisons

source/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def has_ext_modules(foo):
1010

1111
setup(
1212
name="neuropod",
13-
version="0.2.0rc0",
13+
version="0.2.0rc1",
1414
install_requires=REQUIRED_PACKAGES,
1515
packages=find_packages(),
1616
package_data={'': ["neuropod_native.so", "libneuropod.so", "neuropod_multiprocess_worker"]},

0 commit comments

Comments
 (0)