Skip to content

Commit 3c31fd4

Browse files
author
Indenbirken, Marcel IT/HZA-TT
committed
dependency update
1 parent cd2e68e commit 3c31fd4

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -288,14 +288,14 @@ The library is header only. A build is only necessary if you want to run the tes
288288

289289
REXSapi uses the following thirdparty open source software
290290

291-
- [cli11 2.4.1](https://github.com/CLIUtils/CLI11)
292-
- [date 3.0.1](https://github.com/HowardHinnant/date)
293-
- [doctest 2.4.10](https://github.com/doctest/doctest)
291+
- [cli11 2.5.0](https://github.com/CLIUtils/CLI11)
292+
- [date 3.0.3](https://github.com/HowardHinnant/date)
293+
- [doctest 2.4.11](https://github.com/doctest/doctest)
294294
- [fmt 10.2.1](https://github.com/fmtlib/fmt)
295-
- [nlohmann json 3.11.2](https://github.com/nlohmann/json)
295+
- [nlohmann json 3.12.0](https://github.com/nlohmann/json)
296296
- [miniz 3.0.2](https://github.com/richgel999/miniz)
297-
- [pugixml 1.14](https://github.com/zeux/pugixml)
298-
- [valijson 1.0.2](https://github.com/tristanpenman/valijson)
297+
- [pugixml 1.15](https://github.com/zeux/pugixml)
298+
- [valijson 1.0.5](https://github.com/tristanpenman/valijson)
299299

300300
# License
301301

cmake/fetch_cli11.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
cli11
3-
URL https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.4.1.tar.gz
3+
URL https://github.com/CLIUtils/CLI11/archive/refs/tags/v2.5.0.tar.gz
44
)
55

66
FetchContent_MakeAvailable(cli11)

cmake/fetch_date.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
date
3-
URL https://github.com/HowardHinnant/date/archive/refs/tags/v3.0.1.tar.gz
3+
URL https://github.com/HowardHinnant/date/archive/refs/tags/v3.0.3.tar.gz
44
)
55

66
FetchContent_GetProperties(date)

cmake/fetch_doctest.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FetchContent_Declare(
22
doctest
33
GIT_REPOSITORY https://github.com/doctest/doctest
4-
GIT_TAG v2.4.10
4+
GIT_TAG v2.4.11
55
)
66

77
FetchContent_GetProperties(doctest)

cmake/fetch_json.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
json
3-
URL https://github.com/nlohmann/json/archive/refs/tags/v3.11.2.tar.gz
3+
URL https://github.com/nlohmann/json/archive/refs/tags/v3.12.0.tar.gz
44
)
55

66
FetchContent_GetProperties(json)

cmake/fetch_pugixml.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FetchContent_Declare(
22
pugixml
33
GIT_REPOSITORY https://github.com/zeux/pugixml
4-
GIT_TAG v1.14
4+
GIT_TAG v1.15
55
)
66

77
if(NOT pugixml_POPULATED)

cmake/fetch_valijson.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FetchContent_Declare(
22
valijson
3-
URL https://github.com/tristanpenman/valijson/archive/refs/tags/v1.0.2.tar.gz
3+
URL https://github.com/tristanpenman/valijson/archive/refs/tags/v1.0.5.tar.gz
44
)
55

66
FetchContent_GetProperties(valijson)

0 commit comments

Comments
 (0)