Skip to content

Commit b52fe28

Browse files
Merge pull request #5 from connectivecpp/develop
Updating dependent libraries, docs, utility usage
2 parents 7308391 + 2eb7502 commit b52fe28

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

.github/workflows/gen_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: checkout
1919
uses: actions/checkout@v4
2020
- name: run-doxygen
21-
uses: mattnotmitt/doxygen-action@v1.9.8
21+
uses: mattnotmitt/doxygen-action@v1.12.0
2222
with:
2323
working-directory: doc
2424
- name: deploy-pages

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2024 by Cliff Green
1+
# Copyright (c) 2024-2025 by Cliff Green
22
#
33
# https://github.com/connectivecpp/periodic-timer
44
#

cmake/download_asio_cpm.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ set ( THREADS_PREFER_PTHREAD_FLAG TRUE )
1111
find_package ( Threads REQUIRED )
1212

1313
include ( cmake/download_cpm.cmake )
14-
CPMAddPackage ( "gh:chriskohlhoff/asio#asio-1-32-0@1.32.0" )
14+
CPMAddPackage ( "gh:chriskohlhoff/asio#asio-1-34-0@1.34.0" )
1515

1616
# ASIO doesn't use CMake, we have to configure it manually. Extra notes for using on Windows:
1717
#

cmake/download_cpm.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
file(
66
DOWNLOAD
7-
https://github.com/cpm-cmake/CPM.cmake/releases/download/v0.39.0/CPM.cmake
7+
https://github.com/cpm-cmake/CPM.cmake/releases/download/v0.40.0/CPM.cmake
88
${CMAKE_CURRENT_BINARY_DIR}/cmake/CPM.cmake
99
)
1010
include(${CMAKE_CURRENT_BINARY_DIR}/cmake/CPM.cmake)

example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2024 by Cliff Green
1+
# Copyright (c) 2024-2025 by Cliff Green
22
#
33
# Distributed under the Boost Software License, Version 1.0.
44
# (See accompanying file LICENSE.txt or copy at https://www.boost.org/LICENSE_1_0.txt)

include/timer/periodic_timer.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
*
7474
* @author Cliff Green
7575
*
76-
* @copyright (c) 2017-2024 by Cliff Green
76+
* @copyright (c) 2017-2025 by Cliff Green
7777
*
7878
* Distributed under the Boost Software License, Version 1.0.
7979
* (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

test/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2024 by Cliff Green
1+
# Copyright (c) 2024-2025 by Cliff Green
22
#
33
# Distributed under the Boost Software License, Version 1.0.
44
# (See accompanying file LICENSE.txt or copy at https://www.boost.org/LICENSE_1_0.txt)

test/periodic_timer_test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* @author Cliff Green
66
*
7-
* @copyright (c) 2017-2024 by Cliff Green
7+
* @copyright (c) 2017-2025 by Cliff Green
88
*
99
* Distributed under the Boost Software License, Version 1.0.
1010
* (See accompanying file LICENSE.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

0 commit comments

Comments
 (0)