Skip to content

Commit

Permalink
bump: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
TendTo committed Jun 28, 2024
1 parent d2ddcac commit cbcff69
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Automatically determine the INPUT value for the Doxyfile based on the sources of the target
- Customizable extra args to doxygen invocation
- Some more easy to use common configurations
- Some more easy to use common configurations for the `doxygen` macro

### Fixed

- Remove superfluous `\` before the `\n` in the `doxygen` configurations list formatting

## [1.1.2]

### Added

- Forward `**kwargs` from the `doxygen` macro to the underlying `_doxygen` rule invocation
- Some more easy to use common configurations for the `doxygen` macro

### Changed

- Updated documentation

## [NEXT.VERSION]

[1.0.0]: https://github.com/TendTo/rules_doxygen/tree/1.0.0
[1.1.0]: https://github.com/TendTo/rules_doxygen/compare/1.0.0...1.1.0
[1.1.1]: https://github.com/TendTo/rules_doxygen/compare/1.1.0...1.1.1
[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/1.1.1...HEAD
[1.1.2]: https://github.com/TendTo/rules_doxygen/compare/1.1.1...1.1.2
[NEXT.VERSION]: https://github.com/TendTo/rules_doxygen/compare/1.1.2...HEAD
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""rules_doxygen module"""
module(name = "rules_doxygen", version = "1.1.1", compatibility_level = 1)
module(name = "rules_doxygen", version = "1.1.2", compatibility_level = 1)

bazel_dep(name = "platforms", version = "0.0.5")
bazel_dep(name = "stardoc", version = "0.6.2", dev_dependency = True)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ This repository contains a Starlark implementation of Doxygen rules in Bazel.
Add the following to your _MODULE.bazel_:

```bzl
bazel_dep(name = "rules_doxygen", version = "1.1.1", dev_dependency = True)
bazel_dep(name = "rules_doxygen", version = "1.1.2", dev_dependency = True)
```

If you don't want to depend on the [Bazel package registry](https://bazel.build/external/bazelbuild/rules_pkg) or you want to use a not-yet-published version of this module, you can use an archive override by adding the following lines below the `bazel_dep` rule in your _MODULE.bazel_ file:

```bzl
bazel_dep(name = "rules_doxygen", version = "1.1.1", dev_dependency = True)
bazel_dep(name = "rules_doxygen", version = "1.1.2", dev_dependency = True)
archive_override(
module_name = "rules_doxygen",
urls = "https://github.com/TendTo/rules_doxygen/archive/refs/heads/main.tar.gz",
Expand Down

0 comments on commit cbcff69

Please sign in to comment.