diff --git a/CHANGELOG.md b/CHANGELOG.md index 85b2f67c..a7e0de0b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # CHANGELOG +### 0.5.0 + * Fixed static linking against LLVM (#225) + * Fixed handling of absolute paths in glob patterns (#233) * Enabled type_aliases config option for sequence diagrams (#224) * Refactored and unified JSON generators output (#223) * Added support for C++20 module based packages in class diagrams (#101) diff --git a/Doxyfile b/Doxyfile index 99022c23..73fda184 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.4.2 +PROJECT_NUMBER = 0.5.0 # 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/LICENSE.md b/LICENSE.md index f594bdeb..c08fe00b 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -179,7 +179,7 @@ recommend that a file or class name and description of purpose be included on the same “printed page” as the copyright notice for easier identification within third-party archives. - Copyright 2021-2023 Bartek Kryza + Copyright 2021-2024 Bartek Kryza Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/Makefile b/Makefile index 78058d76..7c296dba 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # Makefile # -# Copyright (c) 2021-2023 Bartek Kryza +# Copyright (c) 2021-2024 Bartek Kryza # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index 1b0d3cec..710a0ccd 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.4.2-blue)](https://github.com/bkryza/clang-uml/releases) +[![Version](https://img.shields.io/badge/version-0.5.0-blue)](https://github.com/bkryza/clang-uml/releases) [![Version](https://img.shields.io/badge/LLVM-12,13,14,15,16,17-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/Makefile b/docs/Makefile index 5c11167b..ba3f6d0e 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,6 +1,6 @@ # docs/Makefile # -# Copyright (c) 2021-2023 Bartek Kryza +# Copyright (c) 2021-2024 Bartek Kryza # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/docs/installation.md b/docs/installation.md index c4d2e5b3..e3b16b87 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -173,8 +173,8 @@ bin\clang-uml.exe --version ``` It should produce something like: ```bash -clang-uml 0.4.2 -Copyright (C) 2021-2023 Bartek Kryza +clang-uml 0.5.0 +Copyright (C) 2021-2024 Bartek Kryza Linux x86_64 6.2.0-36-generic Built against LLVM/Clang libraries version: 17.0.3 Using LLVM/Clang libraries version: Ubuntu clang version 17.0.3 (++20231010073202+37b79e779f44-1~exp1~20231010073304.52) diff --git a/packaging/Makefile b/packaging/Makefile index 4809dfe0..bd5f3cbe 100644 --- a/packaging/Makefile +++ b/packaging/Makefile @@ -1,6 +1,6 @@ # Makefile # -# Copyright (c) 2021-2023 Bartek Kryza +# Copyright (c) 2021-2024 Bartek Kryza # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. diff --git a/packaging/autocomplete/_clang-uml b/packaging/autocomplete/_clang-uml index 770e54b6..c0a10c0a 100644 --- a/packaging/autocomplete/_clang-uml +++ b/packaging/autocomplete/_clang-uml @@ -3,7 +3,7 @@ ## ## packaging/autocomplete/_clang-uml ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/packaging/autocomplete/clang-uml b/packaging/autocomplete/clang-uml index a3736386..4e2cb8e7 100644 --- a/packaging/autocomplete/clang-uml +++ b/packaging/autocomplete/clang-uml @@ -3,7 +3,7 @@ ## ## packaging/autocomplete/clang-uml.bash-completion ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/packaging/debian/copyright b/packaging/debian/copyright index 6723034b..b12ba0a3 100644 --- a/packaging/debian/copyright +++ b/packaging/debian/copyright @@ -3,7 +3,7 @@ Upstream-Name: clang-uml Source: https://github.com/bkryza/clang-uml Files: * -Copyright: 2021-2023 Bartek Kryza +Copyright: 2021-2024 Bartek Kryza License: apache Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/src/version.h.in b/src/version.h.in index 95dad7e8..b12a3155 100644 --- a/src/version.h.in +++ b/src/version.h.in @@ -1,7 +1,7 @@ /** * src/version.h * - * Copyright (c) 2021-2023 Bartek Kryza + * Copyright (c) 2021-2024 Bartek Kryza * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. diff --git a/util/check_formatting.sh b/util/check_formatting.sh index eca40d8a..67431600 100755 --- a/util/check_formatting.sh +++ b/util/check_formatting.sh @@ -3,7 +3,7 @@ ## ## util/check_formatting.sh ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/util/format_svg.py b/util/format_svg.py index 9ef13f19..604e6fa2 100755 --- a/util/format_svg.py +++ b/util/format_svg.py @@ -3,7 +3,7 @@ ## ## util/format_svg.py ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/util/generate_mermaid.py b/util/generate_mermaid.py index b85cfc94..0a4b55e5 100644 --- a/util/generate_mermaid.py +++ b/util/generate_mermaid.py @@ -3,7 +3,7 @@ ## ## util/validate_json.py ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/util/generate_test_case.py b/util/generate_test_case.py index f6c4653b..e024c180 100755 --- a/util/generate_test_case.py +++ b/util/generate_test_case.py @@ -3,7 +3,7 @@ ## ## util/generate_test_case.py ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/util/generate_test_cases_docs.py b/util/generate_test_cases_docs.py index 0de123d8..03fcd97a 100755 --- a/util/generate_test_cases_docs.py +++ b/util/generate_test_cases_docs.py @@ -3,7 +3,7 @@ ## ## util/generate_test_cases_docs.py ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License. diff --git a/util/validate_json.py b/util/validate_json.py index 2ff691a6..41765df2 100644 --- a/util/validate_json.py +++ b/util/validate_json.py @@ -3,7 +3,7 @@ ## ## util/validate_json.py ## -## Copyright (c) 2021-2023 Bartek Kryza +## Copyright (c) 2021-2024 Bartek Kryza ## ## Licensed under the Apache License, Version 2.0 (the "License"); ## you may not use this file except in compliance with the License.