Prepare release 0.8.1 (#309)
diff --git a/CHANGELOG.md b/CHANGELOG.md index 43208d9..e2bb169 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -1,3 +1,18 @@ +## Release 0.8.1 + +Bugfix release: fixes compatibility issues with Bazel 9.0. + +**New features** + +- Adds support for `LABEL_LIST_DICT` attribute type and + `exec_group_compatible_with` common attribute (#279) + +**Contributors** + +Alex Eagle, Alexandre Rostovtsev, Fabian Meumertzheim, Ivo List, Jon Brandvein, +Nevena Kotlaja, Philipp Stephani, Thomas Van Lenten, Xùdōng Yáng, Yun Peng + + ## Release 0.8.0 **New Features**
diff --git a/MODULE.bazel b/MODULE.bazel index 1122b8a..6bf4c90 100644 --- a/MODULE.bazel +++ b/MODULE.bazel
@@ -1,6 +1,6 @@ module( name = "stardoc", - version = "0.8.0", + version = "0.8.1", bazel_compatibility = [">=7.0.0"], compatibility_level = 1, )
diff --git a/version.bzl b/version.bzl index 85da2d3..191029d 100644 --- a/version.bzl +++ b/version.bzl
@@ -13,4 +13,4 @@ # limitations under the License. """The version of Stardoc.""" -version = "0.8.0" +version = "0.8.1"