bump: version 2.2.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index eba325c..7b5a423 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -154,4 +154,5 @@
 [2.1.0]: https://github.com/TendTo/rules_doxygen/compare/2.0.0...2.1.0
 [2.2.0]: https://github.com/TendTo/rules_doxygen/compare/2.1.0...2.2.0
 [2.2.1]: https://github.com/TendTo/rules_doxygen/compare/2.2.0...2.2.1
-[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/2.2.1...HEAD
+[2.2.2]: https://github.com/TendTo/rules_doxygen/compare/2.2.1...2.2.2
+[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/2.2.2...HEAD
diff --git a/MODULE.bazel b/MODULE.bazel
index 33269dd..218c818 100644
--- a/MODULE.bazel
+++ b/MODULE.bazel
@@ -1,5 +1,5 @@
 """rules_doxygen module"""
-module(name = "rules_doxygen", version = "2.2.1", compatibility_level = 2)
+module(name = "rules_doxygen", version = "2.2.2", compatibility_level = 2)
 
 bazel_dep(name = "platforms", version = "0.0.10")
 bazel_dep(name = "stardoc", version = "0.7.2", dev_dependency = True)
diff --git a/README.md b/README.md
index cc076e2..587df59 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
 # Doxygen rules for Bazel
 
-[![Bazel Central Repository](https://img.shields.io/badge/BCR-2.2.1-%230C713A?logo=bazel)](https://registry.bazel.build/modules/rules_doxygen)
+[![Bazel Central Repository](https://img.shields.io/badge/BCR-2.2.2-%230C713A?logo=bazel)](https://registry.bazel.build/modules/rules_doxygen)
 [![CI](https://github.com/TendTo/rules_doxygen/actions/workflows/ci.yml/badge.svg)](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.2.1", dev_dependency = True)
+bazel_dep(name = "rules_doxygen", version = "2.2.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.2.1", dev_dependency = True)
+bazel_dep(name = "rules_doxygen", version = "2.2.2", dev_dependency = True)
 git_override(
     module_name = "rules_doxygen",
     commit = "aacc1c856c350a89a0fa9c43b9318a248d5f1781", # Commit hash you want to use
@@ -28,6 +28,9 @@
 )
 ```
 
+> [!Note]  
+> Only [Bazel 7](https://blog.bazel.build/2023/12/11/bazel-7-release.html) and above are supported.
+
 ### Doxygen version selection
 
 To add the `@doxygen` repository to your module, use `doxygen_extension` under `bazel_dep` in your MODULE.bazel file.
@@ -152,8 +155,8 @@
     generate_html = True,                   # Whether to generate HTML output
     generate_latex = False,                 # Whether to generate LaTeX output
     use_mdfile_as_mainpage = "README.md",   # The main page of the documentation
-    # Equivalently, you can manually set the configurations 
-    # that will be appended to the Doxyfile in the form of a list of strings 
+    # Equivalently, you can manually set the configurations
+    # that will be appended to the Doxyfile in the form of a list of strings
     # configurations = [
     #    "GENERATE_HTML = YES",
     #    "GENERATE_LATEX = NO",
diff --git a/examples/submodules/submodule1/MODULE.bazel b/examples/submodules/submodule1/MODULE.bazel
index 11e1377..762560b 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.2.1")
+bazel_dep(name = "rules_doxygen", version = "2.2.2")
 local_path_override(
     module_name = "rules_doxygen",
     path = "../../../",
diff --git a/examples/submodules/submodule2/MODULE.bazel b/examples/submodules/submodule2/MODULE.bazel
index bf2a091..b89c564 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.2.1")
+bazel_dep(name = "rules_doxygen", version = "2.2.2")
 local_path_override(
     module_name = "rules_doxygen",
     path = "../../../",