Updated version to 0.5.0

This commit is contained in:
Bartek Kryza
2024-01-28 21:28:13 +01:00
parent 6db5970b80
commit 20093b9b1c
18 changed files with 21 additions and 18 deletions

View File

@@ -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)

View File

@@ -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

View File

@@ -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 <bkryza@gmail.com>
Copyright 2021-2024 Bartek Kryza <bkryza@gmail.com>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@@ -1,6 +1,6 @@
# 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");
# you may not use this file except in compliance with the License.

View File

@@ -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)

View File

@@ -1,6 +1,6 @@
# 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");
# you may not use this file except in compliance with the License.

View File

@@ -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 <bkryza@gmail.com>
clang-uml 0.5.0
Copyright (C) 2021-2024 Bartek Kryza <bkryza@gmail.com>
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)

View File

@@ -1,6 +1,6 @@
# 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");
# you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@ Upstream-Name: clang-uml
Source: https://github.com/bkryza/clang-uml
Files: *
Copyright: 2021-2023 Bartek Kryza <bkryza@gmail.com>
Copyright: 2021-2024 Bartek Kryza <bkryza@gmail.com>
License: apache
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

View File

@@ -1,7 +1,7 @@
/**
* 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");
* you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.

View File

@@ -3,7 +3,7 @@
##
## 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");
## you may not use this file except in compliance with the License.