release: 0.1.0
diff --git a/examples/legacy_pip_import/WORKSPACE b/examples/legacy_pip_import/WORKSPACE index af84004..2134c23 100644 --- a/examples/legacy_pip_import/WORKSPACE +++ b/examples/legacy_pip_import/WORKSPACE
@@ -4,8 +4,8 @@ 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 c492d19..b97f0c5 100644 --- a/examples/pip_install/WORKSPACE +++ b/examples/pip_install/WORKSPACE
@@ -4,8 +4,8 @@ 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 776b776..94c8998 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.