From c8c79aae9aa1b61d199ad03d5fe06338febd0774 Mon Sep 17 00:00:00 2001 From: Jonathon Belotti Date: Fri, 16 Oct 2020 09:21:09 +1100 Subject: [PATCH] release: 0.1.0 --- examples/legacy_pip_import/WORKSPACE | 4 ++-- examples/pip_install/WORKSPACE | 4 ++-- version.bzl | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/legacy_pip_import/WORKSPACE b/examples/legacy_pip_import/WORKSPACE index af84004328..2134c2389e 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", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.0.3/rules_python-0.0.3.tar.gz", - sha256 = "e46612e9bb0dae8745de6a0643be69e8665a03f63163ac6610c210e80d14c3e4", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz", + sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0", ) 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 c492d1964c..b97f0c5412 100644 --- a/examples/pip_install/WORKSPACE +++ b/examples/pip_install/WORKSPACE @@ -4,8 +4,8 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") http_archive( name = "rules_python", - url = "https://github.com/bazelbuild/rules_python/releases/download/0.0.3/rules_python-0.0.3.tar.gz", - sha256 = "e46612e9bb0dae8745de6a0643be69e8665a03f63163ac6610c210e80d14c3e4", + url = "https://github.com/bazelbuild/rules_python/releases/download/0.1.0/rules_python-0.1.0.tar.gz", + sha256 = "b6d46438523a3ec0f3cead544190ee13223a52f6a6765a29eae7b7cc24cc83a0", ) load("@rules_python//python:repositories.bzl", "py_repositories") diff --git a/version.bzl b/version.bzl index 776b776483..94c8998e61 100644 --- a/version.bzl +++ b/version.bzl @@ -13,7 +13,7 @@ # limitations under the License. """The version of rules_python.""" -version = "0.0.3" +version = "0.1.0" # Currently used Bazel version. This version is what the rules here are tested # against.