Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump version to 0.3.0rc5 #529

Merged
merged 1 commit into from
Jan 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/upload_release.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def upload():
# Only upload the main library on one build (because we don't need to upload once per backend version)
# This is also not CPU/GPU dependent
# For each OS:
if REQUESTED_TF_VERSION == "1.12.0" and not IS_GPU:
if REQUESTED_TF_VERSION == "1.14.0" and not IS_GPU:
upload_package(
"source/bazel-bin/neuropod/libneuropod.tar.gz",
release_id,
Expand Down
2 changes: 1 addition & 1 deletion docs/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ sudo mkdir -p "$NEUROPOD_BASE_DIR"
# Find URLs of backends you want to install from the releases page (https://github.com/uber/neuropod/releases) and install them
# by untarring them in your NEUROPOD_BASE_DIR directory.
# For example, to install a GPU enabled Torch 1.7 backend for CUDA 10.1, run
curl -L https://github.com/uber/neuropod/releases/download/v0.3.0-rc4/libneuropod-gpu-cuda-10.1-linux-v0.3.0-rc4-torchscript-1.7.0-backend.tar.gz | sudo tar -xz -C "$NEUROPOD_BASE_DIR"
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"
```

Multiple backends can be installed for a given framework and Neuropod will select the correct one when loading a model.
Expand Down
2 changes: 1 addition & 1 deletion source/bazel/version.bzl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
NEUROPOD_VERSION = "0.3.0rc4"
NEUROPOD_VERSION = "0.3.0rc5"
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 4
#define NEUROPOD_RELEASE_SERIAL 5

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.3.0rc4"
#define NEUROPOD_VERSION "0.3.0rc5"

// 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 @@ -19,7 +19,7 @@ def has_ext_modules(foo):

setup(
name="neuropod",
version="0.3.0rc4",
version="0.3.0rc5",
install_requires=REQUIRED_PACKAGES,
packages=find_packages(),
package_data={
Expand Down