bump: version 2.6.2
diff --git a/CHANGELOG.md b/CHANGELOG.md index 55a8814..daf2c81 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md
@@ -7,6 +7,16 @@ ## [NEXT.VERSION] +## [2.6.2] + +### Added + +- The `doxygen` extension will try to automatically download the `arm` version of the `doxygen` binary on `arm` platform, provided it is present in the official release of the chosen version (thanks to @mutalibmohammed) + +### Changed + +- Default doxygen version is now `1.16.1` (thanks to @mutalibmohammed) + ## [2.6.1] ### Added @@ -232,4 +242,5 @@ [2.5.0]: https://github.com/TendTo/rules_doxygen/compare/2.4.2...2.5.0 [2.6.0]: https://github.com/TendTo/rules_doxygen/compare/2.5.0...2.6.0 [2.6.1]: https://github.com/TendTo/rules_doxygen/compare/2.6.0...2.6.1 -[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/2.6.1...HEAD \ No newline at end of file +[2.6.2]: https://github.com/TendTo/rules_doxygen/compare/2.6.1...2.6.2 +[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/2.6.2...HEAD
diff --git a/MODULE.bazel b/MODULE.bazel index db0b422..ab752e1 100644 --- a/MODULE.bazel +++ b/MODULE.bazel
@@ -1,5 +1,5 @@ """rules_doxygen module""" -module(name = "rules_doxygen", version = "2.6.1", compatibility_level = 2) +module(name = "rules_doxygen", version = "2.6.2", compatibility_level = 2) bazel_dep(name = "platforms", version = "1.0.0") bazel_dep(name = "stardoc", version = "0.8.0", dev_dependency = True)
diff --git a/README.md b/README.md index 2dfcc03..9579b60 100644 --- a/README.md +++ b/README.md
@@ -1,6 +1,6 @@ # Doxygen rules for Bazel -[](https://registry.bazel.build/modules/rules_doxygen) +[](https://registry.bazel.build/modules/rules_doxygen) [](https://github.com/TendTo/rules_doxygen/actions/workflows/ci.yml) This repository contains a [Starlark](https://github.com/bazelbuild/starlark) implementation of [Doxygen](https://www.doxygen.nl/) rules in [Bazel](https://bazel.build/). @@ -12,7 +12,7 @@ ```bzl # MODULE.bazel file -bazel_dep(name = "rules_doxygen", version = "2.6.1", dev_dependency = True) +bazel_dep(name = "rules_doxygen", version = "2.6.2", dev_dependency = True) ``` If you don't want to depend on the [Bazel package registry](https://bazel.build/external/bazelbuild/rules_pkg) or need a not-yet-published version of this module, you can use a `git_override` by adding the following lines below `bazel_dep` in your _MODULE.bazel_ file: @@ -20,7 +20,7 @@ ```bzl # MODULE.bazel file -bazel_dep(name = "rules_doxygen", version = "2.6.1", dev_dependency = True) +bazel_dep(name = "rules_doxygen", version = "2.6.2", dev_dependency = True) git_override( module_name = "rules_doxygen", commit = "aacc1c856c350a89a0fa9c43b9318a248d5f1781", # Commit hash you want to use
diff --git a/examples/submodules/submodule1/MODULE.bazel b/examples/submodules/submodule1/MODULE.bazel index c504214..0f67a59 100644 --- a/examples/submodules/submodule1/MODULE.bazel +++ b/examples/submodules/submodule1/MODULE.bazel
@@ -1,6 +1,6 @@ module(name = "submodule1") -bazel_dep(name = "rules_doxygen", version = "2.6.1") +bazel_dep(name = "rules_doxygen", version = "2.6.2") local_path_override( module_name = "rules_doxygen", path = "../../../",
diff --git a/examples/submodules/submodule2/MODULE.bazel b/examples/submodules/submodule2/MODULE.bazel index 42d147d..f8405c1 100644 --- a/examples/submodules/submodule2/MODULE.bazel +++ b/examples/submodules/submodule2/MODULE.bazel
@@ -1,6 +1,6 @@ module(name = "submodule2") -bazel_dep(name = "rules_doxygen", version = "2.6.1") +bazel_dep(name = "rules_doxygen", version = "2.6.2") local_path_override( module_name = "rules_doxygen", path = "../../../",