Version bump 1.0.1

This commit is contained in:
Alex Wu
2020-10-30 20:23:59 -07:00
parent f137808518
commit 7fbf938c3f
5 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ set -x
GPU=""
BASE_IMAGE="ubuntu:focal"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.1.0.dev0-cp37-cp37m-manylinux1_x86_64.whl"
WHEEL_URL="https://s3-us-west-2.amazonaws.com/ray-wheels/latest/ray-1.0.1-cp37-cp37m-manylinux1_x86_64.whl"
PYTHON_VERSION=""
while [[ $# -gt 0 ]]
@@ -90,4 +90,4 @@ if [ $BUILD_EXAMPLES ]; then
fi
fi
rm -rf "$WHEEL_DIR"
rm -rf "$WHEEL_DIR"
+1 -1
View File
@@ -102,7 +102,7 @@ from ray import util # noqa: E402
# Replaced with the current commit when building the wheels.
__commit__ = "{{RAY_COMMIT_SHA}}"
__version__ = "1.1.0.dev0"
__version__ = "1.0.1"
__all__ = [
"__version__",
+1 -1
View File
@@ -138,7 +138,7 @@ CoreWorkerProcess::CoreWorkerProcess(const CoreWorkerOptions &options)
RAY_LOG(DEBUG) << "Stats setup in core worker.";
// Initialize stats in core worker global tags.
const ray::stats::TagsType global_tags = {{ray::stats::ComponentKey, "core_worker"},
{ray::stats::VersionKey, "1.1.0.dev0"}};
{ray::stats::VersionKey, "1.0.1"}};
// NOTE(lingxuan.zlx): We assume RayConfig is initialized before it's used.
// RayConfig is generated in Java_io_ray_runtime_RayNativeRuntime_nativeInitialize
+1 -1
View File
@@ -61,7 +61,7 @@ int main(int argc, char *argv[]) {
RayConfig::instance().initialize(config_map);
const ray::stats::TagsType global_tags = {
{ray::stats::ComponentKey, "gcs_server"},
{ray::stats::VersionKey, "1.1.0.dev0"},
{ray::stats::VersionKey, "1.0.1"},
{ray::stats::NodeAddressKey, node_ip_address}};
ray::stats::Init(global_tags, metrics_agent_port);
+1 -1
View File
@@ -254,7 +254,7 @@ int main(int argc, char *argv[]) {
// Initialize stats.
const ray::stats::TagsType global_tags = {
{ray::stats::ComponentKey, "raylet"},
{ray::stats::VersionKey, "1.1.0.dev0"},
{ray::stats::VersionKey, "1.0.1"},
{ray::stats::NodeAddressKey, node_ip_address}};
ray::stats::Init(global_tags, metrics_agent_port);