From 964a21c57a2cc0d0bee5594b18f0818be4deba04 Mon Sep 17 00:00:00 2001 From: laszlocsomor Date: Fri, 10 Aug 2018 07:02:22 -0700 Subject: Java, runfiles: fix deprecation target release Adjust the expected Bazel release version that I expect will drop the deprecated @bazel_tools//tools/runfiles:java-runfiles target. The change which made this target deprecated will first be released in 0.18.0, so we need at least one more release before we can remove the target. RELNOTES[NEW]: Java, runfiles: the Java runfiles library is now in @bazel_tools//tools/java/runfiles. The old target (@bazel_tools//tools/runfiles:java-runfiles) is deprecated and will be removed in Bazel 0.19.0 (not 0.18.0, as stated earlier). PiperOrigin-RevId: 208203724 --- tools/runfiles/BUILD.tools | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/runfiles/BUILD.tools b/tools/runfiles/BUILD.tools index 04c8e6fc3d..ec0f12a908 100644 --- a/tools/runfiles/BUILD.tools +++ b/tools/runfiles/BUILD.tools @@ -2,5 +2,5 @@ java_library( name = "java-runfiles", exports = ["//tools/java/runfiles"], visibility = ["//visibility:public"], - deprecation = "Depend on @bazel_tools//tools/java/runfiles instead. This target will be deleted in Bazel 0.18.0", + deprecation = "Depend on @bazel_tools//tools/java/runfiles instead. This target will be deleted in Bazel 0.19.0", ) -- cgit v1.2.3