From 576ad96723f8c17a7a72bd1eb5e22971cba8c4a7 Mon Sep 17 00:00:00 2001 From: ckormanyos Date: Sat, 18 Jul 2026 15:05:55 +0200 Subject: [PATCH 1/2] Handle Git issue 766 in the right branch --- test/git_issue_766.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/git_issue_766.cpp b/test/git_issue_766.cpp index d9abf8288..4a4f3662a 100644 --- a/test/git_issue_766.cpp +++ b/test/git_issue_766.cpp @@ -1,3 +1,9 @@ +//////////////////////////////////////////////////////////////// +// Copyright 2026 Christopher Kormanyos. +// Distributed under the Boost Software License, +// Version 1.0. (See accompanying file LICENSE_1_0.txt +// or copy at https://www.boost.org/LICENSE_1_0.txt) + #include #include From dd32a32462830f604c46c451ed6af96b98d331df Mon Sep 17 00:00:00 2001 From: ckormanyos Date: Sat, 18 Jul 2026 15:26:43 +0200 Subject: [PATCH 2/2] Update copyrights and checkout action --- .github/workflows/codecov.yml | 5 +++-- .github/workflows/multiprecision.yml | 20 ++++++++++---------- include/boost/multiprecision/cpp_int.hpp | 2 +- 3 files changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml index 5f1a02ec2..fbf7841a0 100644 --- a/.github/workflows/codecov.yml +++ b/.github/workflows/codecov.yml @@ -3,6 +3,7 @@ # Copyright 2021 Alexander Grund # Copyright 2022 James E. King III # Copyright 2023 Matt Borland +# Copyright 2026 Christopher Kormanyos # # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) @@ -93,7 +94,7 @@ jobs: fi git config --global pack.threads 0 - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: # For coverage builds fetch the whole history, else only 1 commit using a 'fake ternary' fetch-depth: ${{ matrix.coverage && '0' || '1' }} @@ -107,7 +108,7 @@ jobs: restore-keys: ${{matrix.os}}-${{matrix.container}}-${{matrix.compiler}}- - name: Fetch Boost.CI - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: boostorg/boost-ci ref: master diff --git a/.github/workflows/multiprecision.yml b/.github/workflows/multiprecision.yml index 391708eb4..99220e544 100644 --- a/.github/workflows/multiprecision.yml +++ b/.github/workflows/multiprecision.yml @@ -1,7 +1,7 @@ # Copyright 2020 Evan Miller # Copyright 2020 Matt Borland # Copyright 2021 John Maddock -# Copyright 2021 Christopher Kormanyos +# Copyright 2021, 2026 Christopher Kormanyos # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at http://boost.org/LICENSE_1_0.txt) @@ -31,7 +31,7 @@ jobs: compiler: [ g++-14 ] suite: [ specfun_mpfr, specfun_gmp, specfun_cpp_dec_float, specfun_cpp_bin_float, specfun_float128, specfun_cpp_double_double ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -93,7 +93,7 @@ jobs: standard: [ c++14, c++17 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -155,7 +155,7 @@ jobs: standard: [ c++17, c++20 ] suite: [ specfun_mpfr, specfun_gmp, specfun_cpp_dec_float, specfun_float128, specfun_cpp_double_double ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -217,7 +217,7 @@ jobs: standard: [ c++14, c++17, c++20, c++23 ] suite: [ standalone ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -279,7 +279,7 @@ jobs: standard: [ c++20 ] suite: [ arithmetic_tests, functions_and_limits, conversions, cpp_int_tests, misc ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -341,7 +341,7 @@ jobs: standard: [ c++20 ] suite: [ arithmetic_tests, functions_and_limits, misc ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Set TOOLSET @@ -405,7 +405,7 @@ jobs: standard: [ 14, 17 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Checkout main boost @@ -448,7 +448,7 @@ jobs: standard: [ 14, 17, 20 ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Checkout main boost @@ -486,7 +486,7 @@ jobs: standard: [ 14, 17, 2a ] suite: [ github_ci_block_1, github_ci_block_2 ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: '0' - name: Checkout main boost diff --git a/include/boost/multiprecision/cpp_int.hpp b/include/boost/multiprecision/cpp_int.hpp index 3eb708533..f6bfdc433 100644 --- a/include/boost/multiprecision/cpp_int.hpp +++ b/include/boost/multiprecision/cpp_int.hpp @@ -1,6 +1,6 @@ //////////////////////////////////////////////////////////////// // Copyright 2012 - 2022 John Maddock. -// Copyright 2022 Christopher Kormanyos. +// Copyright 2022, 2026 Christopher Kormanyos. // Distributed under the Boost Software License, // Version 1.0. (See accompanying file LICENSE_1_0.txt // or copy at https://www.boost.org/LICENSE_1_0.txt)