Skip to content

Commit 3266640

Browse files
committed
bump: version 2.2.1
1 parent b080834 commit 3266640

File tree

5 files changed

+18
-7
lines changed

5 files changed

+18
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.2.1]
9+
10+
### Fix
11+
12+
- Added missing config DOT_TRANSPARENT
13+
14+
### Changed
15+
16+
- Updated documentation and added example with the output substitution
17+
818
## [2.2.0]
919

1020
### Added
@@ -128,4 +138,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
128138
[2.0.0]: https://github.com/TendTo/rules_doxygen/compare/1.3.0...2.0.0
129139
[2.1.0]: https://github.com/TendTo/rules_doxygen/compare/2.0.0...2.1.0
130140
[2.2.0]: https://github.com/TendTo/rules_doxygen/compare/2.1.0...2.2.0
131-
[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/2.1.0...HEAD
141+
[2.2.1]: https://github.com/TendTo/rules_doxygen/compare/2.2.0...2.2.1
142+
[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/2.2.1...HEAD

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""rules_doxygen module"""
2-
module(name = "rules_doxygen", version = "2.1.0", compatibility_level = 2)
2+
module(name = "rules_doxygen", version = "2.2.1", compatibility_level = 2)
33

44
bazel_dep(name = "platforms", version = "0.0.10")
55
bazel_dep(name = "stardoc", version = "0.7.2", dev_dependency = True)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Doxygen rules for Bazel
22

3-
[![Bazel Central Repository](https://img.shields.io/badge/BCR-2.1.0-%230C713A?logo=bazel)](https://registry.bazel.build/modules/rules_doxygen)
3+
[![Bazel Central Repository](https://img.shields.io/badge/BCR-2.2.1-%230C713A?logo=bazel)](https://registry.bazel.build/modules/rules_doxygen)
44
[![CI](https://github.com/TendTo/rules_doxygen/actions/workflows/ci.yml/badge.svg)](https://github.com/TendTo/rules_doxygen/actions/workflows/ci.yml)
55

66
This repository contains a [Starlark](https://github.com/bazelbuild/starlark) implementation of [Doxygen](https://www.doxygen.nl/) rules in [Bazel](https://bazel.build/).
@@ -12,15 +12,15 @@ Add the following to your _MODULE.bazel_:
1212
```bzl
1313
# MODULE.bazel file
1414

15-
bazel_dep(name = "rules_doxygen", version = "2.1.0", dev_dependency = True)
15+
bazel_dep(name = "rules_doxygen", version = "2.2.1", dev_dependency = True)
1616
```
1717

1818
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:
1919

2020
```bzl
2121
# MODULE.bazel file
2222

23-
bazel_dep(name = "rules_doxygen", version = "2.1.0", dev_dependency = True)
23+
bazel_dep(name = "rules_doxygen", version = "2.2.1", dev_dependency = True)
2424
git_override(
2525
module_name = "rules_doxygen",
2626
commit = "aacc1c856c350a89a0fa9c43b9318a248d5f1781", # Commit hash you want to use

examples/submodules/submodule1/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(name = "submodule1")
22

3-
bazel_dep(name = "rules_doxygen", version = "2.1.0")
3+
bazel_dep(name = "rules_doxygen", version = "2.2.1")
44
local_path_override(
55
module_name = "rules_doxygen",
66
path = "../../../",

examples/submodules/submodule2/MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module(name = "submodule2")
22

3-
bazel_dep(name = "rules_doxygen", version = "2.1.0")
3+
bazel_dep(name = "rules_doxygen", version = "2.2.1")
44
local_path_override(
55
module_name = "rules_doxygen",
66
path = "../../../",

0 commit comments

Comments
 (0)