Skip to content

Commit 5533eb7

Browse files
authored
Bump version to 0.3.0rc6 (#534)
### Summary: Update the Neuropod version to `0.3.0rc6` ### Test Plan: CI
1 parent 2c45e86 commit 5533eb7

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/installing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ sudo mkdir -p "$NEUROPOD_BASE_DIR"
4242
# Find URLs of backends you want to install from the releases page (https://github.com/uber/neuropod/releases) and install them
4343
# by untarring them in your NEUROPOD_BASE_DIR directory.
4444
# For example, to install a GPU enabled Torch 1.7 backend for CUDA 10.1, run
45-
curl -L https://github.com/uber/neuropod/releases/download/v0.3.0-rc5/libneuropod-gpu-cuda-10.1-linux-v0.3.0-rc5-torchscript-1.7.0-backend.tar.gz | sudo tar -xz -C "$NEUROPOD_BASE_DIR"
45+
curl -L https://github.com/uber/neuropod/releases/download/v0.3.0-rc6/libneuropod-gpu-cuda-10.1-linux-v0.3.0-rc6-torchscript-1.7.0-backend.tar.gz | sudo tar -xz -C "$NEUROPOD_BASE_DIR"
4646
```
4747

4848
Multiple backends can be installed for a given framework and Neuropod will select the correct one when loading a model.

source/bazel/version.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
NEUROPOD_VERSION = "0.3.0rc5"
1+
NEUROPOD_VERSION = "0.3.0rc6"

source/neuropod/version.hh

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

3333
// These are allowed to be 4 bits each
3434
#define NEUROPOD_RELEASE_LEVEL NEUROPOD_RELEASE_LEVEL_RELEASE_CANDIDATE
35-
#define NEUROPOD_RELEASE_SERIAL 5
35+
#define NEUROPOD_RELEASE_SERIAL 6
3636

3737
static_assert(NEUROPOD_RELEASE_LEVEL < 16, "NEUROPOD_RELEASE_LEVEL must be in the range 0 to 15 (4 bits)");
3838
static_assert(NEUROPOD_RELEASE_SERIAL < 16, "NEUROPOD_RELEASE_SERIAL must be in the range 0 to 15 (4 bits)");
3939

4040
// The version as a string
41-
#define NEUROPOD_VERSION "0.3.0rc5"
41+
#define NEUROPOD_VERSION "0.3.0rc6"
4242

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

source/python/setup.py

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

2020
setup(
2121
name="neuropod",
22-
version="0.3.0rc5",
22+
version="0.3.0rc6",
2323
install_requires=REQUIRED_PACKAGES,
2424
packages=find_packages(),
2525
package_data={

0 commit comments

Comments
 (0)