From bc94da83ca373b9aa2d3971360ea41001ef24a9d Mon Sep 17 00:00:00 2001 From: Sergei Semichev Date: Mon, 23 Jan 2023 11:15:17 +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 4dbfac5..6c20bce 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-2022 Sergei Semichev +@copyright 2019-2023 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 ec03df2..c6bdf16 100644 --- a/include/binbo_board.hrl +++ b/include/binbo_board.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 2786aff..43053ca 100644 --- a/include/binbo_fen.hrl +++ b/include/binbo_fen.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 2244bae..c920a1b 100644 --- a/include/binbo_global.hrl +++ b/include/binbo_global.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 3734494..82fce30 100644 --- a/include/binbo_magic.hrl +++ b/include/binbo_magic.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 e35a6fd..469ba65 100644 --- a/include/binbo_move.hrl +++ b/include/binbo_move.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 58dffa5..71b41f3 100644 --- a/include/binbo_position.hrl +++ b/include/binbo_position.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 e5ee12e..21c9f92 100644 --- a/src/binbo.erl +++ b/src/binbo.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 66f40d4..944f5b0 100644 --- a/src/binbo_app.erl +++ b/src/binbo_app.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 fa60790..56e2a9e 100644 --- a/src/binbo_attacks.erl +++ b/src/binbo_attacks.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 3a7169b..275d6d7 100644 --- a/src/binbo_bb.erl +++ b/src/binbo_bb.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 00cffd3..1f61185 100644 --- a/src/binbo_board.erl +++ b/src/binbo_board.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 bda41f6..984f054 100644 --- a/src/binbo_fen.erl +++ b/src/binbo_fen.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 cc6deac..1596277 100644 --- a/src/binbo_game.erl +++ b/src/binbo_game.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 2e53b94..d9b1ed5 100644 --- a/src/binbo_global.erl +++ b/src/binbo_global.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 1ebea81..56bf32f 100644 --- a/src/binbo_hash.erl +++ b/src/binbo_hash.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 fd097bf..0b52762 100644 --- a/src/binbo_magic.erl +++ b/src/binbo_magic.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 077c649..51bfc0d 100644 --- a/src/binbo_move.erl +++ b/src/binbo_move.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 67ba347..2c6b0ed 100644 --- a/src/binbo_movegen.erl +++ b/src/binbo_movegen.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 8f46fc4..00d7021 100644 --- a/src/binbo_pgn.erl +++ b/src/binbo_pgn.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 643fc8f..91dd74c 100644 --- a/src/binbo_position.erl +++ b/src/binbo_position.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 09b4ab3..c70f319 100644 --- a/src/binbo_server.erl +++ b/src/binbo_server.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 0c3932b..80a0f10 100644 --- a/src/binbo_sup.erl +++ b/src/binbo_sup.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 43365dd..ca2ac9d 100644 --- a/src/binbo_uci_connection.erl +++ b/src/binbo_uci_connection.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 af44a5a..bd35d7b 100644 --- a/src/binbo_uci_protocol.erl +++ b/src/binbo_uci_protocol.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 92f8426..c3486da 100644 --- a/test/binbo_bb_SUITE.erl +++ b/test/binbo_bb_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 cd4d99b..73b4227 100644 --- a/test/binbo_board_SUITE.erl +++ b/test/binbo_board_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 6c889f0..81137f9 100644 --- a/test/binbo_fen_SUITE.erl +++ b/test/binbo_fen_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 091dcb8..96cbf85 100644 --- a/test/binbo_global_SUITE.erl +++ b/test/binbo_global_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 2202343..e5b49d5 100644 --- a/test/binbo_hash_SUITE.erl +++ b/test/binbo_hash_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 fda388d..c400488 100644 --- a/test/binbo_server_SUITE.erl +++ b/test/binbo_server_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 e64bb9f..9d808b0 100644 --- a/test/binbo_test_lib.erl +++ b/test/binbo_test_lib.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 ea768b0..545347a 100644 --- a/test/binbo_test_lib.hrl +++ b/test/binbo_test_lib.hrl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 6031f6a..016dfb8 100644 --- a/test/concurrent_games_SUITE.erl +++ b/test/concurrent_games_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 412a1ea..1fc4670 100644 --- a/test/perft_SUITE.erl +++ b/test/perft_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 9f68785..ff4281e 100644 --- a/test/pgn_SUITE.erl +++ b/test/pgn_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 bb049f4..f08db8c 100644 --- a/test/play_game_SUITE.erl +++ b/test/play_game_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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 aa81029..b50d4d8 100644 --- a/test/uci_SUITE.erl +++ b/test/uci_SUITE.erl @@ -1,4 +1,4 @@ -%% Copyright (c) 2019-2022, Sergei Semichev . All Rights Reserved. +%% Copyright (c) 2019-2023, 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.