Update proto and prepare release 0.7.1 (#239)

* Sync proto with Bazel at HEAD to support toolchains attr

* Prepare release 0.7.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c35c110..cefc6a5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
+## Release 0.7.1
+
+**Notable Changes**
+
+- Really fix building with `--incompatible_disallow_empty_glob` (#238).
+- Auxiliary rule targets created by `stardoc()` macro now include provided
+  `tags` (#247)
+
+**Contributors**
+
+Alexandre Rostovtsev, Lukács Berki, yashathwani
+
+
 ## Release 0.7.0
 
 This release requires Bazel 7 or newer.
diff --git a/MODULE.bazel b/MODULE.bazel
index 6fe8c48..5a1917a 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,6 +1,6 @@
 module(
     name = "stardoc",
-    version = "0.7.0",
+    version = "0.7.1",
     bazel_compatibility = [">=7.0.0"],
     compatibility_level = 1,
 )
diff --git a/src/main/java/com/google/devtools/build/stardoc/rendering/MarkdownUtil.java b/src/main/java/com/google/devtools/build/stardoc/rendering/MarkdownUtil.java
index 0a84eea..192a01d 100644
--- a/src/main/java/com/google/devtools/build/stardoc/rendering/MarkdownUtil.java
+++ b/src/main/java/com/google/devtools/build/stardoc/rendering/MarkdownUtil.java
@@ -558,6 +558,8 @@
         return "Boolean";
       case LABEL_STRING_DICT:
         return "Dictionary: Label -> String";
+      case LABEL_DICT_UNARY:
+        return "Dictionary: String -> Label";
       case STRING_DICT:
         return "Dictionary: String -> String";
       case STRING_LIST_DICT:
diff --git a/stardoc/proto/stardoc_output.proto b/stardoc/proto/stardoc_output.proto
index ee6082f..7f63dc9 100644
--- a/stardoc/proto/stardoc_output.proto
+++ b/stardoc/proto/stardoc_output.proto
@@ -13,7 +13,7 @@
 // limitations under the License.
 //
 // Vendored from src/main/protobuf/stardoc_output.proto
-// in the Bazel source tree at commit bd1c3af2ea14e81268e940d2b8ba5ad00c3f08d7n
+// in the Bazel source tree at commit 1ce4ab15fab18063d8291132ea84e71fa02d27c4n
 
 //
 // Protos for Stardoc data.
@@ -74,6 +74,7 @@
   STRING_LIST_DICT = 11;
   OUTPUT = 12;
   OUTPUT_LIST = 13;
+  LABEL_DICT_UNARY = 14;
 }
 
 // Representation of a Starlark rule definition.
diff --git a/version.bzl b/version.bzl
index d6f8f7b..7a6031e 100644
--- a/version.bzl
+++ b/version.bzl
@@ -13,4 +13,4 @@
 # limitations under the License.
 """The version of Stardoc."""
 
-version = "0.7.0"
+version = "0.7.1"