From 76ef44fdb8aaa8d5c607721ffe1b1cbf1e8f08dd Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Mon, 25 Oct 2021 19:10:15 -0700 Subject: [PATCH] Release 0.5.0 --- examples/legacy_pip_import/WORKSPACE | 4 ++-- examples/pip_install/WORKSPACE | 5 ++--- examples/pip_parse/WORKSPACE | 4 ++-- examples/py_import/WORKSPACE | 4 ++-- examples/relative_requirements/WORKSPACE | 4 ++-- version.bzl | 2 +- 6 files changed, 11 insertions(+), 12 deletions(-) diff --git a/examples/legacy_pip_import/WORKSPACE b/examples/legacy_pip_import/WORKSPACE index 6777fb775f..784fbdbc77 100644 --- a/examples/legacy_pip_import/WORKSPACE +++ b/examples/legacy_pip_import/WORKSPACE @@ -4,8 +4,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz", + sha256 = "cd6730ed53a002c56ce4e2f396ba3b3be262fd7cb68339f0377a45e8227fe332", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.5.0/rules_python-0.5.0.tar.gz", ) load("@rules_python//python/legacy_pip_import:pip.bzl", "pip_import", "pip_repositories") diff --git a/examples/pip_install/WORKSPACE b/examples/pip_install/WORKSPACE index cd2730308b..42ff327be3 100644 --- a/examples/pip_install/WORKSPACE +++ b/examples/pip_install/WORKSPACE @@ -13,9 +13,8 @@ http_archive( http_archive( name = "rules_python", - sha256 = "4ab93d2af38ecd5b3d9e1d70aaa20448de57ac8bd78d4c5e40b9be4139eebb50", - strip_prefix = "rules_python-8e2b6de3e7f434dd98a8d25403bd7fb45866eacc", - url = "https://github.com/bazelbuild/rules_python/archive/8e2b6de3e7f434dd98a8d25403bd7fb45866eacc.tar.gz", + sha256 = "cd6730ed53a002c56ce4e2f396ba3b3be262fd7cb68339f0377a45e8227fe332", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.5.0/rules_python-0.5.0.tar.gz", ) load("@rules_python//python:pip.bzl", "pip_install") diff --git a/examples/pip_parse/WORKSPACE b/examples/pip_parse/WORKSPACE index c37803ea24..7e47ed22c3 100644 --- a/examples/pip_parse/WORKSPACE +++ b/examples/pip_parse/WORKSPACE @@ -4,8 +4,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz", + sha256 = "cd6730ed53a002c56ce4e2f396ba3b3be262fd7cb68339f0377a45e8227fe332", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.5.0/rules_python-0.5.0.tar.gz", ) load("@rules_python//python:pip.bzl", "pip_parse") diff --git a/examples/py_import/WORKSPACE b/examples/py_import/WORKSPACE index 9c1ef4cb7f..bc325a9132 100644 --- a/examples/py_import/WORKSPACE +++ b/examples/py_import/WORKSPACE @@ -4,8 +4,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - sha256 = "954aa89b491be4a083304a2cb838019c8b8c3720a7abb9c4cb81ac7a24230cea", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.4.0/rules_python-0.4.0.tar.gz", + sha256 = "cd6730ed53a002c56ce4e2f396ba3b3be262fd7cb68339f0377a45e8227fe332", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.5.0/rules_python-0.5.0.tar.gz", ) load("@rules_python//python:pip.bzl", "pip_install") diff --git a/examples/relative_requirements/WORKSPACE b/examples/relative_requirements/WORKSPACE index 505fa9ebc8..4c635b4c57 100644 --- a/examples/relative_requirements/WORKSPACE +++ b/examples/relative_requirements/WORKSPACE @@ -4,8 +4,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz", + sha256 = "cd6730ed53a002c56ce4e2f396ba3b3be262fd7cb68339f0377a45e8227fe332", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.5.0/rules_python-0.5.0.tar.gz", ) load("@rules_python//python:pip.bzl", "pip_install") diff --git a/version.bzl b/version.bzl index 37f458a3e3..add52f35f0 100644 --- a/version.bzl +++ b/version.bzl @@ -13,7 +13,7 @@ # limitations under the License. """The version of rules_python.""" -version = "0.4.0" +version = "0.5.0" # Currently used Bazel version. This version is what the rules here are tested # against.