From 7c2aebded256dfe123c17360ec546512991544c8 Mon Sep 17 00:00:00 2001 From: Alexandre Rostovtsev Date: Thu, 23 Jan 2025 14:31:24 -0500 Subject: [PATCH] Prepare release 0.8.0 (#273) --- CHANGELOG.md | 13 +++++++++++++ MODULE.bazel | 2 +- version.bzl | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c75d36a..43208d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## Release 0.8.0 + +**New Features** + +- Adds support for documenting symbolic macros when using Bazel 8.0.1 + or newer. (Note that the original Bazel 8.0.0 release had a bug causing + macro documentation emitted by Stardoc to be be incomplete.) (#267) + +**Contributors** + +Alexandre Rostovtsev, Keith Smiley, Richard Levasseur + + ## Release 0.7.2 Bugfix release: fixes compatibility issues with Bazel 7.4 and 8.0. diff --git a/MODULE.bazel b/MODULE.bazel index 0b4358e..263d39a 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "stardoc", - version = "0.7.2", + version = "0.8.0", bazel_compatibility = [">=7.0.0"], compatibility_level = 1, ) diff --git a/version.bzl b/version.bzl index 2db8876..85da2d3 100644 --- a/version.bzl +++ b/version.bzl @@ -13,4 +13,4 @@ # limitations under the License. """The version of Stardoc.""" -version = "0.7.2" +version = "0.8.0"