diff --git a/CHANGELOG.md b/CHANGELOG.md index ce3bd1ae..4aa189c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # CHANGELOG +### 0.5.3 * Added context filter direction and relationships options (#274) * Improved test coverage (#287) * Fixed handling of relationships to nested enums (#280) diff --git a/Doxyfile b/Doxyfile index a7289681..ba696306 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "clang-uml" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.5.2 +PROJECT_NUMBER = 0.5.3 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/README.md b/README.md index 8514cbfe..360e126b 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ [![Build status](https://github.com/bkryza/clang-uml/actions/workflows/build.yml/badge.svg)](https://github.com/bkryza/clang-uml/actions) [![Coverage](https://codecov.io/gh/bkryza/clang-uml/branch/master/graph/badge.svg)](https://codecov.io/gh/bkryza/clang-uml) -[![Version](https://img.shields.io/badge/version-0.5.2-blue)](https://github.com/bkryza/clang-uml/releases) +[![Version](https://img.shields.io/badge/version-0.5.3-blue)](https://github.com/bkryza/clang-uml/releases) [![Version](https://img.shields.io/badge/LLVM-12,13,14,15,16,17,18-orange)](https://github.com/bkryza/clang-uml/releases) [![Doxygen](https://img.shields.io/badge/Docs-Doxygen-gainsboro)](https://clang-uml.github.io) diff --git a/docs/installation.md b/docs/installation.md index 8820a3a4..e96678a6 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -33,17 +33,17 @@ sudo apt install clang-uml #### Fedora ```bash -# Fedora 37 -wget https://github.com/bkryza/clang-uml/releases/download/0.5.1/clang-uml-0.5.1-1.fc37.x86_64.rpm -sudo dnf install ./clang-uml-0.5.1-1.fc37.x86_64.rpm - # Fedora 38 -wget https://github.com/bkryza/clang-uml/releases/download/0.5.1/clang-uml-0.5.1-1.fc38.x86_64.rpm -sudo dnf install ./clang-uml-0.5.1-1.fc38.x86_64.rpm +wget https://github.com/bkryza/clang-uml/releases/download/0.5.3/clang-uml-0.5.3-1.fc38.x86_64.rpm +sudo dnf install ./clang-uml-0.5.3-1.fc38.x86_64.rpm # Fedora 39 -wget https://github.com/bkryza/clang-uml/releases/download/0.5.1/clang-uml-0.5.1-1.fc39.x86_64.rpm -sudo dnf install ./clang-uml-0.5.1-1.fc39.x86_64.rpm +wget https://github.com/bkryza/clang-uml/releases/download/0.5.3/clang-uml-0.5.3-1.fc39.x86_64.rpm +sudo dnf install ./clang-uml-0.5.3-1.fc39.x86_64.rpm + +# Fedora 40 +wget https://github.com/bkryza/clang-uml/releases/download/0.5.3/clang-uml-0.5.3-1.fc40.x86_64.rpm +sudo dnf install ./clang-uml-0.5.3-1.fc40.x86_64.rpm ``` #### Conda @@ -57,7 +57,7 @@ conda install -c bkryza/label/clang-uml clang-uml #### Nix You can use the version packaged in nixpkgs like this: -Currently clang-uml version 0.5.1 is available in nixos-unstable and nixos-24.05 +Currently clang-uml version 0.5.2 is available in nixos-unstable and nixos-24.05 ```bash nix-shell -p clang-uml ```