From fd13a73f0b7bf312b24bdd05c90dcc69cd00ba30 Mon Sep 17 00:00:00 2001 From: Sergei Semichev Date: Tue, 11 Feb 2025 18:07:40 +0300 Subject: [PATCH] Update year --- doc/overview.edoc | 2 +- include/binbo_board.hrl | 2 +- include/binbo_fen.hrl | 2 +- include/binbo_global.hrl | 2 +- include/binbo_magic.hrl | 2 +- include/binbo_move.hrl | 2 +- include/binbo_position.hrl | 2 +- src/binbo.erl | 2 +- src/binbo_app.erl | 2 +- src/binbo_attacks.erl | 2 +- src/binbo_bb.erl | 2 +- src/binbo_board.erl | 2 +- src/binbo_fen.erl | 2 +- src/binbo_game.erl | 2 +- src/binbo_global.erl | 2 +- src/binbo_hash.erl | 2 +- src/binbo_magic.erl | 2 +- src/binbo_move.erl | 2 +- src/binbo_movegen.erl | 2 +- src/binbo_pgn.erl | 2 +- src/binbo_position.erl | 2 +- src/binbo_server.erl | 2 +- src/binbo_sup.erl | 2 +- src/binbo_uci_connection.erl | 2 +- src/binbo_uci_protocol.erl | 2 +- test/binbo_bb_SUITE.erl | 2 +- test/binbo_board_SUITE.erl | 2 +- test/binbo_fen_SUITE.erl | 2 +- test/binbo_global_SUITE.erl | 2 +- test/binbo_hash_SUITE.erl | 2 +- test/binbo_server_SUITE.erl | 2 +- test/binbo_test_lib.erl | 2 +- test/binbo_test_lib.hrl | 2 +- test/concurrent_games_SUITE.erl | 2 +- test/perft_SUITE.erl | 2 +- test/pgn_SUITE.erl | 2 +- test/play_game_SUITE.erl | 2 +- test/uci_SUITE.erl | 2 +- 38 files changed, 38 insertions(+), 38 deletions(-) diff --git a/doc/overview.edoc b/doc/overview.edoc index f8739c4..f74deb8 100644 --- a/doc/overview.edoc +++ b/doc/overview.edoc @@ -1,7 +1,7 @@ ** this is the overview.doc file for the application 'Binbo' ** @author Sergei Semichev -@copyright 2019-2024 Sergei Semichev +@copyright 2019-2025 Sergei Semichev @title The Binbo application @reference See Binbo page on github for more information and examples. diff --git a/include/binbo_board.hrl b/include/binbo_board.hrl index 3b3329b..bd034b1 100644 --- a/include/binbo_board.hrl +++ b/include/binbo_board.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/binbo_fen.hrl b/include/binbo_fen.hrl index 8a425dd..176ec2a 100644 --- a/include/binbo_fen.hrl +++ b/include/binbo_fen.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/binbo_global.hrl b/include/binbo_global.hrl index f3b5aa5..9d243a4 100644 --- a/include/binbo_global.hrl +++ b/include/binbo_global.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/binbo_magic.hrl b/include/binbo_magic.hrl index c44a084..63540bd 100644 --- a/include/binbo_magic.hrl +++ b/include/binbo_magic.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/binbo_move.hrl b/include/binbo_move.hrl index 090abdf..496139c 100644 --- a/include/binbo_move.hrl +++ b/include/binbo_move.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/include/binbo_position.hrl b/include/binbo_position.hrl index 1c962d8..c675cd3 100644 --- a/include/binbo_position.hrl +++ b/include/binbo_position.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo.erl b/src/binbo.erl index 8c8f58f..ff2232a 100644 --- a/src/binbo.erl +++ b/src/binbo.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_app.erl b/src/binbo_app.erl index b40fed1..cc04a4b 100644 --- a/src/binbo_app.erl +++ b/src/binbo_app.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_attacks.erl b/src/binbo_attacks.erl index 8d24e3e..4a0c9f0 100644 --- a/src/binbo_attacks.erl +++ b/src/binbo_attacks.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_bb.erl b/src/binbo_bb.erl index d291139..0a46cd3 100644 --- a/src/binbo_bb.erl +++ b/src/binbo_bb.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_board.erl b/src/binbo_board.erl index 5cc7e6b..d2f3ebb 100644 --- a/src/binbo_board.erl +++ b/src/binbo_board.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_fen.erl b/src/binbo_fen.erl index a1c6993..a95aec7 100644 --- a/src/binbo_fen.erl +++ b/src/binbo_fen.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_game.erl b/src/binbo_game.erl index ea36fa9..23cda2c 100644 --- a/src/binbo_game.erl +++ b/src/binbo_game.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_global.erl b/src/binbo_global.erl index a092318..2175899 100644 --- a/src/binbo_global.erl +++ b/src/binbo_global.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_hash.erl b/src/binbo_hash.erl index 2503579..86eff9b 100644 --- a/src/binbo_hash.erl +++ b/src/binbo_hash.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_magic.erl b/src/binbo_magic.erl index 68a2497..a302be5 100644 --- a/src/binbo_magic.erl +++ b/src/binbo_magic.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_move.erl b/src/binbo_move.erl index f34c853..d25650a 100644 --- a/src/binbo_move.erl +++ b/src/binbo_move.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_movegen.erl b/src/binbo_movegen.erl index 6fd8204..6ace642 100644 --- a/src/binbo_movegen.erl +++ b/src/binbo_movegen.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_pgn.erl b/src/binbo_pgn.erl index 996dd11..846ed9c 100644 --- a/src/binbo_pgn.erl +++ b/src/binbo_pgn.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_position.erl b/src/binbo_position.erl index e06a2b1..652605f 100644 --- a/src/binbo_position.erl +++ b/src/binbo_position.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_server.erl b/src/binbo_server.erl index d39c77b..7e48b7c 100644 --- a/src/binbo_server.erl +++ b/src/binbo_server.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_sup.erl b/src/binbo_sup.erl index fe85418..fab8e28 100644 --- a/src/binbo_sup.erl +++ b/src/binbo_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_uci_connection.erl b/src/binbo_uci_connection.erl index 580af60..2dd5f8e 100644 --- a/src/binbo_uci_connection.erl +++ b/src/binbo_uci_connection.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/src/binbo_uci_protocol.erl b/src/binbo_uci_protocol.erl index cee331d..12396d8 100644 --- a/src/binbo_uci_protocol.erl +++ b/src/binbo_uci_protocol.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_bb_SUITE.erl b/test/binbo_bb_SUITE.erl index 2b01f82..5db05fd 100644 --- a/test/binbo_bb_SUITE.erl +++ b/test/binbo_bb_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_board_SUITE.erl b/test/binbo_board_SUITE.erl index 13c7770..412ff63 100644 --- a/test/binbo_board_SUITE.erl +++ b/test/binbo_board_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_fen_SUITE.erl b/test/binbo_fen_SUITE.erl index acb2fde..807fc58 100644 --- a/test/binbo_fen_SUITE.erl +++ b/test/binbo_fen_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_global_SUITE.erl b/test/binbo_global_SUITE.erl index 1f369fc..31a31c1 100644 --- a/test/binbo_global_SUITE.erl +++ b/test/binbo_global_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_hash_SUITE.erl b/test/binbo_hash_SUITE.erl index 39d5434..62a3802 100644 --- a/test/binbo_hash_SUITE.erl +++ b/test/binbo_hash_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_server_SUITE.erl b/test/binbo_server_SUITE.erl index 8504e32..adc9ec6 100644 --- a/test/binbo_server_SUITE.erl +++ b/test/binbo_server_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_test_lib.erl b/test/binbo_test_lib.erl index daa9b8a..5318cba 100644 --- a/test/binbo_test_lib.erl +++ b/test/binbo_test_lib.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/binbo_test_lib.hrl b/test/binbo_test_lib.hrl index b2d75b7..920cf02 100644 --- a/test/binbo_test_lib.hrl +++ b/test/binbo_test_lib.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/concurrent_games_SUITE.erl b/test/concurrent_games_SUITE.erl index beecd5e..002a712 100644 --- a/test/concurrent_games_SUITE.erl +++ b/test/concurrent_games_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/perft_SUITE.erl b/test/perft_SUITE.erl index 0806df6..7ecc8cb 100644 --- a/test/perft_SUITE.erl +++ b/test/perft_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/pgn_SUITE.erl b/test/pgn_SUITE.erl index 7537cba..4dcaa69 100644 --- a/test/pgn_SUITE.erl +++ b/test/pgn_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/play_game_SUITE.erl b/test/play_game_SUITE.erl index fe976fd..0ab890d 100644 --- a/test/play_game_SUITE.erl +++ b/test/play_game_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License. diff --git a/test/uci_SUITE.erl b/test/uci_SUITE.erl index 7f6ce83..9a8122e 100644 --- a/test/uci_SUITE.erl +++ b/test/uci_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2024, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2025, Sergei Semichev . All Rights Reserved. %% %% Licensed under the Apache License, Version 2.0 (the "License"); %% you may not use this file except in compliance with the License.