Updated version to 0.5.0
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
# CHANGELOG
|
# 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)
|
* Enabled type_aliases config option for sequence diagrams (#224)
|
||||||
* Refactored and unified JSON generators output (#223)
|
* Refactored and unified JSON generators output (#223)
|
||||||
* Added support for C++20 module based packages in class diagrams (#101)
|
* Added support for C++20 module based packages in class diagrams (#101)
|
||||||
|
|||||||
2
Doxyfile
2
Doxyfile
@@ -38,7 +38,7 @@ PROJECT_NAME = "clang-uml"
|
|||||||
# could be handy for archiving the generated documentation or if some version
|
# could be handy for archiving the generated documentation or if some version
|
||||||
# control system is used.
|
# 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
|
# 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
|
# for a project that appears at the top of each page and should give viewer a
|
||||||
|
|||||||
@@ -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
|
the same “printed page” as the copyright notice for easier identification within
|
||||||
third-party archives.
|
third-party archives.
|
||||||
|
|
||||||
Copyright 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
Copyright 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
|||||||
2
Makefile
2
Makefile
@@ -1,6 +1,6 @@
|
|||||||
# Makefile
|
# Makefile
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
# Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
[](https://github.com/bkryza/clang-uml/actions)
|
[](https://github.com/bkryza/clang-uml/actions)
|
||||||
[](https://codecov.io/gh/bkryza/clang-uml)
|
[](https://codecov.io/gh/bkryza/clang-uml)
|
||||||
[](https://github.com/bkryza/clang-uml/releases)
|
[](https://github.com/bkryza/clang-uml/releases)
|
||||||
[](https://github.com/bkryza/clang-uml/releases)
|
[](https://github.com/bkryza/clang-uml/releases)
|
||||||
[](https://clang-uml.github.io)
|
[](https://clang-uml.github.io)
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# docs/Makefile
|
# docs/Makefile
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
# Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -173,8 +173,8 @@ bin\clang-uml.exe --version
|
|||||||
```
|
```
|
||||||
It should produce something like:
|
It should produce something like:
|
||||||
```bash
|
```bash
|
||||||
clang-uml 0.4.2
|
clang-uml 0.5.0
|
||||||
Copyright (C) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
Copyright (C) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
Linux x86_64 6.2.0-36-generic
|
Linux x86_64 6.2.0-36-generic
|
||||||
Built against LLVM/Clang libraries version: 17.0.3
|
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)
|
Using LLVM/Clang libraries version: Ubuntu clang version 17.0.3 (++20231010073202+37b79e779f44-1~exp1~20231010073304.52)
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# Makefile
|
# Makefile
|
||||||
#
|
#
|
||||||
# Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
# Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
#
|
#
|
||||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
# you may not use this file except in compliance with the License.
|
# you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## packaging/autocomplete/_clang-uml
|
## packaging/autocomplete/_clang-uml
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## packaging/autocomplete/clang-uml.bash-completion
|
## packaging/autocomplete/clang-uml.bash-completion
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ Upstream-Name: clang-uml
|
|||||||
Source: https://github.com/bkryza/clang-uml
|
Source: https://github.com/bkryza/clang-uml
|
||||||
|
|
||||||
Files: *
|
Files: *
|
||||||
Copyright: 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
Copyright: 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
License: apache
|
License: apache
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* src/version.h
|
* src/version.h
|
||||||
*
|
*
|
||||||
* Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
* Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## util/check_formatting.sh
|
## util/check_formatting.sh
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## util/format_svg.py
|
## util/format_svg.py
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## util/validate_json.py
|
## util/validate_json.py
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## util/generate_test_case.py
|
## util/generate_test_case.py
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## util/generate_test_cases_docs.py
|
## util/generate_test_cases_docs.py
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
##
|
##
|
||||||
## util/validate_json.py
|
## util/validate_json.py
|
||||||
##
|
##
|
||||||
## Copyright (c) 2021-2023 Bartek Kryza <bkryza@gmail.com>
|
## Copyright (c) 2021-2024 Bartek Kryza <bkryza@gmail.com>
|
||||||
##
|
##
|
||||||
## Licensed under the Apache License, Version 2.0 (the "License");
|
## Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
## you may not use this file except in compliance with the License.
|
## you may not use this file except in compliance with the License.
|
||||||
|
|||||||
Reference in New Issue
Block a user