From 4e90f66cf91848be11f220dee95205f592525936 Mon Sep 17 00:00:00 2001 From: Phillip Mienk Date: Wed, 16 Aug 2023 17:27:34 -0700 Subject: [PATCH] Update copyright year range. --- .github/workflows/ci.yml | 2 +- Makefile.am | 2 +- autogen.sh | 2 +- build.cmd | 2 +- builds/cmake/CMakeLists.txt | 2 +- builds/cmake/modules/FindBitcoin-System.cmake | 2 +- builds/cmake/modules/FindBitcoin.cmake | 2 +- builds/msvc/debug.natvis | 2 +- .../libbitcoin-database-test/libbitcoin-database-test.vcxproj | 2 +- .../libbitcoin-database-test.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-database-test/packages.config | 2 +- .../libbitcoin-database-tools/libbitcoin-database-tools.vcxproj | 2 +- .../libbitcoin-database-tools.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-database-tools/packages.config | 2 +- .../msvc/vs2022/libbitcoin-database/libbitcoin-database.vcxproj | 2 +- .../libbitcoin-database/libbitcoin-database.vcxproj.filters | 2 +- builds/msvc/vs2022/libbitcoin-database/packages.config | 2 +- configure.ac | 2 +- include/bitcoin/database.hpp | 2 +- include/bitcoin/database/data_base.hpp | 2 +- include/bitcoin/database/databases/block_database.hpp | 2 +- include/bitcoin/database/databases/history_database.hpp | 2 +- include/bitcoin/database/databases/spend_database.hpp | 2 +- include/bitcoin/database/databases/stealth_database.hpp | 2 +- include/bitcoin/database/databases/transaction_database.hpp | 2 +- include/bitcoin/database/define.hpp | 2 +- include/bitcoin/database/impl/hash_table_header.ipp | 2 +- include/bitcoin/database/impl/record_hash_table.ipp | 2 +- include/bitcoin/database/impl/record_multimap.ipp | 2 +- include/bitcoin/database/impl/record_row.ipp | 2 +- include/bitcoin/database/impl/remainder.ipp | 2 +- include/bitcoin/database/impl/slab_hash_table.ipp | 2 +- include/bitcoin/database/impl/slab_row.ipp | 2 +- include/bitcoin/database/memory/accessor.hpp | 2 +- include/bitcoin/database/memory/allocator.hpp | 2 +- include/bitcoin/database/memory/memory.hpp | 2 +- include/bitcoin/database/memory/memory_map.hpp | 2 +- include/bitcoin/database/primitives/hash_table_header.hpp | 2 +- include/bitcoin/database/primitives/record_hash_table.hpp | 2 +- include/bitcoin/database/primitives/record_list.hpp | 2 +- include/bitcoin/database/primitives/record_manager.hpp | 2 +- include/bitcoin/database/primitives/record_multimap.hpp | 2 +- .../bitcoin/database/primitives/record_multimap_iterable.hpp | 2 +- .../bitcoin/database/primitives/record_multimap_iterator.hpp | 2 +- include/bitcoin/database/primitives/slab_hash_table.hpp | 2 +- include/bitcoin/database/primitives/slab_manager.hpp | 2 +- include/bitcoin/database/result/block_result.hpp | 2 +- include/bitcoin/database/result/transaction_result.hpp | 2 +- include/bitcoin/database/settings.hpp | 2 +- include/bitcoin/database/store.hpp | 2 +- include/bitcoin/database/unspent_outputs.hpp | 2 +- include/bitcoin/database/unspent_transaction.hpp | 2 +- include/bitcoin/database/version.hpp | 2 +- install-cmake.sh | 2 +- install-cmakepresets.sh | 2 +- install.sh | 2 +- libbitcoin-database-test_runner.sh | 2 +- libbitcoin-database.pc.in | 2 +- src/data_base.cpp | 2 +- src/databases/block_database.cpp | 2 +- src/databases/history_database.cpp | 2 +- src/databases/spend_database.cpp | 2 +- src/databases/stealth_database.cpp | 2 +- src/databases/transaction_database.cpp | 2 +- src/memory/accessor.cpp | 2 +- src/memory/allocator.cpp | 2 +- src/memory/memory_map.cpp | 2 +- src/primitives/record_list.cpp | 2 +- src/primitives/record_manager.cpp | 2 +- src/primitives/record_multimap_iterable.cpp | 2 +- src/primitives/record_multimap_iterator.cpp | 2 +- src/primitives/slab_manager.cpp | 2 +- src/result/block_result.cpp | 2 +- src/result/transaction_result.cpp | 2 +- src/settings.cpp | 2 +- src/store.cpp | 2 +- src/unspent_outputs.cpp | 2 +- src/unspent_transaction.cpp | 2 +- test/block_database.cpp | 2 +- test/data_base.cpp | 2 +- test/hash_table.cpp | 2 +- test/history_database.cpp | 2 +- test/main.cpp | 2 +- test/spend_database.cpp | 2 +- test/structure.cpp | 2 +- test/transaction_database.cpp | 2 +- test/unspent_outputs.cpp | 2 +- test/unspent_transaction.cpp | 2 +- tools/initchain/initchain.cpp | 2 +- 89 files changed, 89 insertions(+), 89 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0dce6c00d..cf6ef1aee 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-database developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-database developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/Makefile.am b/Makefile.am index 6443ce46b..2c24c664e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-database developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-database developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/autogen.sh b/autogen.sh index 222b5ae39..cc0078648 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,6 +1,6 @@ #!/bin/sh ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-database developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-database developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/build.cmd b/build.cmd index 0848fbaf2..5a47b6c8e 100644 --- a/build.cmd +++ b/build.cmd @@ -1,5 +1,5 @@ REM ########################################################################### -REM # Copyright (c) 2014-2020 libbitcoin-database developers (see COPYING). +REM # Copyright (c) 2014-2023 libbitcoin-database developers (see COPYING). REM # REM # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY REM # diff --git a/builds/cmake/CMakeLists.txt b/builds/cmake/CMakeLists.txt index 94dcfbc59..3758c2d54 100644 --- a/builds/cmake/CMakeLists.txt +++ b/builds/cmake/CMakeLists.txt @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-database developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-database developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBitcoin-System.cmake b/builds/cmake/modules/FindBitcoin-System.cmake index 1a5d05246..63f408305 100644 --- a/builds/cmake/modules/FindBitcoin-System.cmake +++ b/builds/cmake/modules/FindBitcoin-System.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-protocol developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-protocol developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/cmake/modules/FindBitcoin.cmake b/builds/cmake/modules/FindBitcoin.cmake index 953624146..f33b9df69 100644 --- a/builds/cmake/modules/FindBitcoin.cmake +++ b/builds/cmake/modules/FindBitcoin.cmake @@ -1,5 +1,5 @@ ############################################################################### -# Copyright (c) 2014-2020 libbitcoin-protocol developers (see COPYING). +# Copyright (c) 2014-2023 libbitcoin-protocol developers (see COPYING). # # GENERATED SOURCE CODE, DO NOT EDIT EXCEPT EXPERIMENTALLY # diff --git a/builds/msvc/debug.natvis b/builds/msvc/debug.natvis index 8fd8c4a4f..87ecca228 100644 --- a/builds/msvc/debug.natvis +++ b/builds/msvc/debug.natvis @@ -1,6 +1,6 @@