Skip to content

Commit 911ddf9

Browse files
committed
Updated version to 0.5.4
1 parent 1d67c9d commit 911ddf9

File tree

7 files changed

+505
-404
lines changed

7 files changed

+505
-404
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# CHANGELOG
22

3+
### 0.5.4
34
* Updated thirdparty dependencies (#306)
45
* Added regular expression support to remove_compile_flags (#303)
56
* Fixed repeated comments in sequence diagrams (#301)

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "clang-uml"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.5.3
41+
PROJECT_NUMBER = 0.5.4
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[![Linux build status](https://github.com/bkryza/clang-uml/actions/workflows/build.yml/badge.svg)](https://github.com/bkryza/clang-uml/actions)
66
[![macos build status](https://github.com/bkryza/clang-uml/actions/workflows/macos.yml/badge.svg)](https://github.com/bkryza/clang-uml/actions)
77
[![Coverage](https://codecov.io/gh/bkryza/clang-uml/branch/master/graph/badge.svg)](https://codecov.io/gh/bkryza/clang-uml)
8-
[![Version](https://img.shields.io/badge/version-0.5.3-blue)](https://github.com/bkryza/clang-uml/releases)
8+
[![Version](https://img.shields.io/badge/version-0.5.4-blue)](https://github.com/bkryza/clang-uml/releases)
99
[![Version](https://img.shields.io/badge/LLVM-12,13,14,15,16,17,18-orange)](https://github.com/bkryza/clang-uml/releases)
1010
[![Doxygen](https://img.shields.io/badge/Docs-Doxygen-gainsboro)](https://clang-uml.github.io)
1111

docs/doxygen/header.html

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,10 @@
4444
hljs.configure({useBR: false});
4545
$(".fragment").each(function(i,node) {
4646
var $node = $(node);
47-
// Only apply highlight.js to non-cpp code blocks
48-
if (!$node.hasClass("language-cpp")) {
47+
// Only apply highlight.js to non-cpp and non-yaml code blocks
48+
if (!$node.hasClass("language-cpp")
49+
&& !$node.hasClass("language-yaml")
50+
&& !$node.hasClass("language-json")) {
4951
$node.html("<pre><code class='" +
5052
$node.attr("class") + "'>" +
5153
$node.text() + "</code></pre>");

0 commit comments

Comments
 (0)