aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar laszlocsomor <laszlocsomor@google.com>2018-08-10 07:02:22 -0700
committerGravatar Copybara-Service <copybara-piper@google.com>2018-08-10 07:05:02 -0700
commit964a21c57a2cc0d0bee5594b18f0818be4deba04 (patch)
treeed04b3a99151abea29d9d84d0caf062798d4dd4a /tools
parentb354d04134cf6fbda4ef45934835bbfcd61004ab (diff)
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
Diffstat (limited to 'tools')
-rw-r--r--tools/runfiles/BUILD.tools2
1 files changed, 1 insertions, 1 deletions
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",
)