From 6365dc0e69e98eb071ee3bf4905874e7b85b7fea Mon Sep 17 00:00:00 2001
From: Moul <moul@moul.re>
Date: Sun, 21 Feb 2021 14:16:51 +0100
Subject: [PATCH] [doc] Update copyright to 2021

---
 duniterpy/__init__.py                             | 2 +-
 duniterpy/api/bma/__init__.py                     | 2 +-
 duniterpy/api/bma/blockchain.py                   | 2 +-
 duniterpy/api/bma/network.py                      | 2 +-
 duniterpy/api/bma/node.py                         | 2 +-
 duniterpy/api/bma/tx.py                           | 2 +-
 duniterpy/api/bma/ud.py                           | 2 +-
 duniterpy/api/bma/wot.py                          | 2 +-
 duniterpy/api/bma/ws.py                           | 2 +-
 duniterpy/api/client.py                           | 2 +-
 duniterpy/api/endpoint.py                         | 2 +-
 duniterpy/api/errors.py                           | 2 +-
 duniterpy/api/ws2p/__init__.py                    | 2 +-
 duniterpy/api/ws2p/network.py                     | 2 +-
 duniterpy/api/ws2p/requests.py                    | 2 +-
 duniterpy/constants.py                            | 2 +-
 duniterpy/documents/__init__.py                   | 2 +-
 duniterpy/documents/block.py                      | 2 +-
 duniterpy/documents/block_uid.py                  | 2 +-
 duniterpy/documents/certification.py              | 2 +-
 duniterpy/documents/crc_pubkey.py                 | 2 +-
 duniterpy/documents/document.py                   | 2 +-
 duniterpy/documents/identity.py                   | 2 +-
 duniterpy/documents/membership.py                 | 2 +-
 duniterpy/documents/peer.py                       | 2 +-
 duniterpy/documents/revocation.py                 | 2 +-
 duniterpy/documents/transaction.py                | 2 +-
 duniterpy/documents/ws2p/heads.py                 | 2 +-
 duniterpy/documents/ws2p/messages.py              | 2 +-
 duniterpy/grammars/output.py                      | 2 +-
 duniterpy/helpers/money.py                        | 2 +-
 duniterpy/helpers/network.py                      | 2 +-
 duniterpy/helpers/ws2p.py                         | 2 +-
 duniterpy/key/__init__.py                         | 2 +-
 duniterpy/key/ascii_armor.py                      | 2 +-
 duniterpy/key/base58.py                           | 2 +-
 duniterpy/key/constants.py                        | 2 +-
 duniterpy/key/encryption_key.py                   | 2 +-
 duniterpy/key/scrypt_params.py                    | 2 +-
 duniterpy/key/signing_key.py                      | 2 +-
 duniterpy/key/verifying_key.py                    | 2 +-
 duniterpy/tools.py                                | 2 +-
 examples/create_public_key.py                     | 2 +-
 examples/listen_ws2p.py                           | 2 +-
 examples/load_binary_encrypted_message.py         | 2 +-
 examples/load_binary_signed_message.py            | 2 +-
 examples/load_cleartext_ascii_armor_message.py    | 2 +-
 examples/load_credentials_file.py                 | 2 +-
 examples/load_encrypted_ascii_armor_message.py    | 2 +-
 examples/load_scuttlebutt_file.py                 | 2 +-
 examples/request_available_nodes.py               | 2 +-
 examples/request_data.py                          | 2 +-
 examples/request_data_async.py                    | 2 +-
 examples/request_data_elasticsearch.py            | 2 +-
 examples/request_web_socket_block.py              | 2 +-
 examples/request_ws2p.py                          | 2 +-
 examples/save_and_load_private_key_file.py        | 2 +-
 examples/save_and_load_private_key_file_ewif.py   | 2 +-
 examples/save_and_load_private_key_file_pubsec.py | 2 +-
 examples/save_and_load_private_key_file_wif.py    | 2 +-
 examples/save_binary_encrypted_message.py         | 2 +-
 examples/save_binary_signed_message.py            | 2 +-
 examples/save_cleartext_ascii_armor_message.py    | 2 +-
 examples/save_encrypted_ascii_armor_message.py    | 2 +-
 examples/save_revoke_document.py                  | 2 +-
 examples/send_certification.py                    | 2 +-
 examples/send_identity.py                         | 2 +-
 examples/send_membership.py                       | 2 +-
 examples/send_transaction.py                      | 2 +-
 tests/api/bma/test_blockchain.py                  | 2 +-
 tests/api/bma/test_bma.py                         | 2 +-
 tests/api/bma/test_network.py                     | 2 +-
 tests/api/bma/test_tx.py                          | 2 +-
 tests/api/bma/test_wot.py                         | 2 +-
 tests/api/bma/test_ws.py                          | 2 +-
 tests/api/test_endpoints.py                       | 2 +-
 tests/api/webserver.py                            | 2 +-
 tests/api/ws2p/test_ws2p.py                       | 2 +-
 tests/documents/test_block.py                     | 2 +-
 tests/documents/test_certification.py             | 2 +-
 tests/documents/test_crc_pubkey.py                | 2 +-
 tests/documents/test_membership.py                | 2 +-
 tests/documents/test_peer.py                      | 2 +-
 tests/documents/test_transaction.py               | 2 +-
 tests/documents/test_ws2p_heads.py                | 2 +-
 tests/grammars/test_output.py                     | 2 +-
 tests/helpers/money.py                            | 2 +-
 tests/helpers/ws2p.py                             | 2 +-
 tests/key/test_ascii_armor.py                     | 2 +-
 tests/key/test_encryption_key.py                  | 2 +-
 tests/key/test_public_key.py                      | 2 +-
 tests/key/test_signing_key.py                     | 2 +-
 tests/key/test_verifying_key.py                   | 2 +-
 93 files changed, 93 insertions(+), 93 deletions(-)

diff --git a/duniterpy/__init__.py b/duniterpy/__init__.py
index 8f525bf0..0e3fd091 100644
--- a/duniterpy/__init__.py
+++ b/duniterpy/__init__.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/__init__.py b/duniterpy/api/bma/__init__.py
index 962789ff..fdde5b5c 100644
--- a/duniterpy/api/bma/__init__.py
+++ b/duniterpy/api/bma/__init__.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/blockchain.py b/duniterpy/api/bma/blockchain.py
index 2705b7d9..8cd3fa45 100644
--- a/duniterpy/api/bma/blockchain.py
+++ b/duniterpy/api/bma/blockchain.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/network.py b/duniterpy/api/bma/network.py
index a23e7fa7..1f6fdaf1 100644
--- a/duniterpy/api/bma/network.py
+++ b/duniterpy/api/bma/network.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/node.py b/duniterpy/api/bma/node.py
index 08dee756..5518134b 100644
--- a/duniterpy/api/bma/node.py
+++ b/duniterpy/api/bma/node.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/tx.py b/duniterpy/api/bma/tx.py
index d4e5c03f..980f52eb 100644
--- a/duniterpy/api/bma/tx.py
+++ b/duniterpy/api/bma/tx.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/ud.py b/duniterpy/api/bma/ud.py
index 189b3cf3..a8c80dc1 100644
--- a/duniterpy/api/bma/ud.py
+++ b/duniterpy/api/bma/ud.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/wot.py b/duniterpy/api/bma/wot.py
index 733b14b7..43bbe2b3 100644
--- a/duniterpy/api/bma/wot.py
+++ b/duniterpy/api/bma/wot.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/bma/ws.py b/duniterpy/api/bma/ws.py
index 76d87cfe..5ff498c8 100644
--- a/duniterpy/api/bma/ws.py
+++ b/duniterpy/api/bma/ws.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/client.py b/duniterpy/api/client.py
index 072d71dd..6085c037 100644
--- a/duniterpy/api/client.py
+++ b/duniterpy/api/client.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/endpoint.py b/duniterpy/api/endpoint.py
index 4074e006..75e3c9b7 100644
--- a/duniterpy/api/endpoint.py
+++ b/duniterpy/api/endpoint.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/errors.py b/duniterpy/api/errors.py
index 45c794bf..fda70945 100644
--- a/duniterpy/api/errors.py
+++ b/duniterpy/api/errors.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/ws2p/__init__.py b/duniterpy/api/ws2p/__init__.py
index 0590ff8d..45aa7e01 100644
--- a/duniterpy/api/ws2p/__init__.py
+++ b/duniterpy/api/ws2p/__init__.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/ws2p/network.py b/duniterpy/api/ws2p/network.py
index db9e8606..e05c4652 100644
--- a/duniterpy/api/ws2p/network.py
+++ b/duniterpy/api/ws2p/network.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/api/ws2p/requests.py b/duniterpy/api/ws2p/requests.py
index cc968718..16792775 100644
--- a/duniterpy/api/ws2p/requests.py
+++ b/duniterpy/api/ws2p/requests.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/constants.py b/duniterpy/constants.py
index 31f458a4..1e182dc2 100644
--- a/duniterpy/constants.py
+++ b/duniterpy/constants.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/__init__.py b/duniterpy/documents/__init__.py
index 87c10480..9ce20d1d 100644
--- a/duniterpy/documents/__init__.py
+++ b/duniterpy/documents/__init__.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/block.py b/duniterpy/documents/block.py
index 16e044a7..cbc64abb 100644
--- a/duniterpy/documents/block.py
+++ b/duniterpy/documents/block.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/block_uid.py b/duniterpy/documents/block_uid.py
index 5cffd3b6..bf3f8162 100644
--- a/duniterpy/documents/block_uid.py
+++ b/duniterpy/documents/block_uid.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/certification.py b/duniterpy/documents/certification.py
index d551cc14..04714a82 100644
--- a/duniterpy/documents/certification.py
+++ b/duniterpy/documents/certification.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/crc_pubkey.py b/duniterpy/documents/crc_pubkey.py
index b5acc03e..834c30ec 100644
--- a/duniterpy/documents/crc_pubkey.py
+++ b/duniterpy/documents/crc_pubkey.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/document.py b/duniterpy/documents/document.py
index 06f779a4..f14a4d19 100644
--- a/duniterpy/documents/document.py
+++ b/duniterpy/documents/document.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/identity.py b/duniterpy/documents/identity.py
index 58a19a1e..aa8aaf17 100644
--- a/duniterpy/documents/identity.py
+++ b/duniterpy/documents/identity.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/membership.py b/duniterpy/documents/membership.py
index bf8a6df9..3e62f874 100644
--- a/duniterpy/documents/membership.py
+++ b/duniterpy/documents/membership.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/peer.py b/duniterpy/documents/peer.py
index 2e7b4648..2a382e91 100644
--- a/duniterpy/documents/peer.py
+++ b/duniterpy/documents/peer.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/revocation.py b/duniterpy/documents/revocation.py
index 990535e5..15cee33e 100644
--- a/duniterpy/documents/revocation.py
+++ b/duniterpy/documents/revocation.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/transaction.py b/duniterpy/documents/transaction.py
index ec66cdaf..4f640070 100644
--- a/duniterpy/documents/transaction.py
+++ b/duniterpy/documents/transaction.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/ws2p/heads.py b/duniterpy/documents/ws2p/heads.py
index 19c972ad..2016f793 100644
--- a/duniterpy/documents/ws2p/heads.py
+++ b/duniterpy/documents/ws2p/heads.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/documents/ws2p/messages.py b/duniterpy/documents/ws2p/messages.py
index 7cf02cf7..d790a496 100644
--- a/duniterpy/documents/ws2p/messages.py
+++ b/duniterpy/documents/ws2p/messages.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/grammars/output.py b/duniterpy/grammars/output.py
index a6ec16cb..e754bfbe 100644
--- a/duniterpy/grammars/output.py
+++ b/duniterpy/grammars/output.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/helpers/money.py b/duniterpy/helpers/money.py
index adca356e..6f9076eb 100644
--- a/duniterpy/helpers/money.py
+++ b/duniterpy/helpers/money.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/helpers/network.py b/duniterpy/helpers/network.py
index 96bede38..70da09b1 100644
--- a/duniterpy/helpers/network.py
+++ b/duniterpy/helpers/network.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/helpers/ws2p.py b/duniterpy/helpers/ws2p.py
index c43f688b..e79119e9 100644
--- a/duniterpy/helpers/ws2p.py
+++ b/duniterpy/helpers/ws2p.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/__init__.py b/duniterpy/key/__init__.py
index a116898c..a3cf1acd 100644
--- a/duniterpy/key/__init__.py
+++ b/duniterpy/key/__init__.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/ascii_armor.py b/duniterpy/key/ascii_armor.py
index 5035d092..154eab3e 100644
--- a/duniterpy/key/ascii_armor.py
+++ b/duniterpy/key/ascii_armor.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/base58.py b/duniterpy/key/base58.py
index 599b8738..5b1afe2c 100644
--- a/duniterpy/key/base58.py
+++ b/duniterpy/key/base58.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/constants.py b/duniterpy/key/constants.py
index fb78cb86..40328fdc 100644
--- a/duniterpy/key/constants.py
+++ b/duniterpy/key/constants.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/encryption_key.py b/duniterpy/key/encryption_key.py
index 5bd30831..b575bca4 100644
--- a/duniterpy/key/encryption_key.py
+++ b/duniterpy/key/encryption_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/scrypt_params.py b/duniterpy/key/scrypt_params.py
index 09e8645c..95c036ac 100644
--- a/duniterpy/key/scrypt_params.py
+++ b/duniterpy/key/scrypt_params.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/signing_key.py b/duniterpy/key/signing_key.py
index d7c0a7cf..45696723 100644
--- a/duniterpy/key/signing_key.py
+++ b/duniterpy/key/signing_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/key/verifying_key.py b/duniterpy/key/verifying_key.py
index c227c987..5577a18c 100644
--- a/duniterpy/key/verifying_key.py
+++ b/duniterpy/key/verifying_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/duniterpy/tools.py b/duniterpy/tools.py
index ee25f885..a613e642 100644
--- a/duniterpy/tools.py
+++ b/duniterpy/tools.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/create_public_key.py b/examples/create_public_key.py
index 3409bc8b..8c088a65 100644
--- a/examples/create_public_key.py
+++ b/examples/create_public_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/listen_ws2p.py b/examples/listen_ws2p.py
index 9861c718..9ef2f464 100644
--- a/examples/listen_ws2p.py
+++ b/examples/listen_ws2p.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/load_binary_encrypted_message.py b/examples/load_binary_encrypted_message.py
index 9300efe3..19447c27 100644
--- a/examples/load_binary_encrypted_message.py
+++ b/examples/load_binary_encrypted_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/load_binary_signed_message.py b/examples/load_binary_signed_message.py
index e842b7d1..57cea48d 100644
--- a/examples/load_binary_signed_message.py
+++ b/examples/load_binary_signed_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/load_cleartext_ascii_armor_message.py b/examples/load_cleartext_ascii_armor_message.py
index 34bcc179..339f24ee 100644
--- a/examples/load_cleartext_ascii_armor_message.py
+++ b/examples/load_cleartext_ascii_armor_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/load_credentials_file.py b/examples/load_credentials_file.py
index f9b1bd90..9942a1e9 100644
--- a/examples/load_credentials_file.py
+++ b/examples/load_credentials_file.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/load_encrypted_ascii_armor_message.py b/examples/load_encrypted_ascii_armor_message.py
index 6e6ae2bb..5e27efb1 100644
--- a/examples/load_encrypted_ascii_armor_message.py
+++ b/examples/load_encrypted_ascii_armor_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/load_scuttlebutt_file.py b/examples/load_scuttlebutt_file.py
index 5fb6840b..e5e557cc 100644
--- a/examples/load_scuttlebutt_file.py
+++ b/examples/load_scuttlebutt_file.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/request_available_nodes.py b/examples/request_available_nodes.py
index b4d86ad1..1b9a208e 100644
--- a/examples/request_available_nodes.py
+++ b/examples/request_available_nodes.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/request_data.py b/examples/request_data.py
index 06f03c65..3b9473f1 100644
--- a/examples/request_data.py
+++ b/examples/request_data.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/request_data_async.py b/examples/request_data_async.py
index 153a4257..b8743641 100644
--- a/examples/request_data_async.py
+++ b/examples/request_data_async.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/request_data_elasticsearch.py b/examples/request_data_elasticsearch.py
index d767e6af..444edaa9 100644
--- a/examples/request_data_elasticsearch.py
+++ b/examples/request_data_elasticsearch.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/request_web_socket_block.py b/examples/request_web_socket_block.py
index 7a3e04e3..6b76a390 100644
--- a/examples/request_web_socket_block.py
+++ b/examples/request_web_socket_block.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/request_ws2p.py b/examples/request_ws2p.py
index b73945a1..14747b32 100644
--- a/examples/request_ws2p.py
+++ b/examples/request_ws2p.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_and_load_private_key_file.py b/examples/save_and_load_private_key_file.py
index 252a6cec..8e3c477f 100644
--- a/examples/save_and_load_private_key_file.py
+++ b/examples/save_and_load_private_key_file.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_and_load_private_key_file_ewif.py b/examples/save_and_load_private_key_file_ewif.py
index f901c24b..135ed202 100644
--- a/examples/save_and_load_private_key_file_ewif.py
+++ b/examples/save_and_load_private_key_file_ewif.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_and_load_private_key_file_pubsec.py b/examples/save_and_load_private_key_file_pubsec.py
index 7394bfd7..afe41a37 100644
--- a/examples/save_and_load_private_key_file_pubsec.py
+++ b/examples/save_and_load_private_key_file_pubsec.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_and_load_private_key_file_wif.py b/examples/save_and_load_private_key_file_wif.py
index 5427b2ee..fd78982d 100644
--- a/examples/save_and_load_private_key_file_wif.py
+++ b/examples/save_and_load_private_key_file_wif.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_binary_encrypted_message.py b/examples/save_binary_encrypted_message.py
index 00859ef4..8000256e 100644
--- a/examples/save_binary_encrypted_message.py
+++ b/examples/save_binary_encrypted_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_binary_signed_message.py b/examples/save_binary_signed_message.py
index 3d746945..094d0861 100644
--- a/examples/save_binary_signed_message.py
+++ b/examples/save_binary_signed_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_cleartext_ascii_armor_message.py b/examples/save_cleartext_ascii_armor_message.py
index 073145c3..2efb6c2d 100644
--- a/examples/save_cleartext_ascii_armor_message.py
+++ b/examples/save_cleartext_ascii_armor_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_encrypted_ascii_armor_message.py b/examples/save_encrypted_ascii_armor_message.py
index 35f4a435..d5cc6a1b 100644
--- a/examples/save_encrypted_ascii_armor_message.py
+++ b/examples/save_encrypted_ascii_armor_message.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/save_revoke_document.py b/examples/save_revoke_document.py
index 62eb80b6..1b63bfb1 100644
--- a/examples/save_revoke_document.py
+++ b/examples/save_revoke_document.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/send_certification.py b/examples/send_certification.py
index cf325cba..5569e4f0 100644
--- a/examples/send_certification.py
+++ b/examples/send_certification.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/send_identity.py b/examples/send_identity.py
index 261274a1..68bcd4d5 100644
--- a/examples/send_identity.py
+++ b/examples/send_identity.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/send_membership.py b/examples/send_membership.py
index 8fd5b25d..acfb79ef 100644
--- a/examples/send_membership.py
+++ b/examples/send_membership.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/examples/send_transaction.py b/examples/send_transaction.py
index 56aaacb5..2928b9b3 100644
--- a/examples/send_transaction.py
+++ b/examples/send_transaction.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/bma/test_blockchain.py b/tests/api/bma/test_blockchain.py
index a48b7bac..cbde93c7 100644
--- a/tests/api/bma/test_blockchain.py
+++ b/tests/api/bma/test_blockchain.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/bma/test_bma.py b/tests/api/bma/test_bma.py
index 41f54d9a..72994ae2 100644
--- a/tests/api/bma/test_bma.py
+++ b/tests/api/bma/test_bma.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/bma/test_network.py b/tests/api/bma/test_network.py
index 0e2c5d87..b9083ed0 100644
--- a/tests/api/bma/test_network.py
+++ b/tests/api/bma/test_network.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/bma/test_tx.py b/tests/api/bma/test_tx.py
index 048ddd65..8e5f8a5e 100644
--- a/tests/api/bma/test_tx.py
+++ b/tests/api/bma/test_tx.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/bma/test_wot.py b/tests/api/bma/test_wot.py
index b0bdda18..80146f85 100644
--- a/tests/api/bma/test_wot.py
+++ b/tests/api/bma/test_wot.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/bma/test_ws.py b/tests/api/bma/test_ws.py
index 3826153a..6df78798 100644
--- a/tests/api/bma/test_ws.py
+++ b/tests/api/bma/test_ws.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/test_endpoints.py b/tests/api/test_endpoints.py
index 8fc88cf3..86fdad52 100644
--- a/tests/api/test_endpoints.py
+++ b/tests/api/test_endpoints.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/webserver.py b/tests/api/webserver.py
index d0adc5d9..aafd6b05 100644
--- a/tests/api/webserver.py
+++ b/tests/api/webserver.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/api/ws2p/test_ws2p.py b/tests/api/ws2p/test_ws2p.py
index bbfeaf48..c7a6a5ad 100644
--- a/tests/api/ws2p/test_ws2p.py
+++ b/tests/api/ws2p/test_ws2p.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_block.py b/tests/documents/test_block.py
index fe9975c0..4dc6f35d 100644
--- a/tests/documents/test_block.py
+++ b/tests/documents/test_block.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_certification.py b/tests/documents/test_certification.py
index 7b801932..ddb4099f 100644
--- a/tests/documents/test_certification.py
+++ b/tests/documents/test_certification.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_crc_pubkey.py b/tests/documents/test_crc_pubkey.py
index 6228832f..c7f5d3a0 100644
--- a/tests/documents/test_crc_pubkey.py
+++ b/tests/documents/test_crc_pubkey.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_membership.py b/tests/documents/test_membership.py
index a00169a2..f39fde54 100644
--- a/tests/documents/test_membership.py
+++ b/tests/documents/test_membership.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_peer.py b/tests/documents/test_peer.py
index 0b1ec1e9..bfe21008 100644
--- a/tests/documents/test_peer.py
+++ b/tests/documents/test_peer.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_transaction.py b/tests/documents/test_transaction.py
index ce9411ef..f2d82d67 100644
--- a/tests/documents/test_transaction.py
+++ b/tests/documents/test_transaction.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/documents/test_ws2p_heads.py b/tests/documents/test_ws2p_heads.py
index d850f2dd..9ce8c078 100644
--- a/tests/documents/test_ws2p_heads.py
+++ b/tests/documents/test_ws2p_heads.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/grammars/test_output.py b/tests/grammars/test_output.py
index 5468224b..51aef501 100644
--- a/tests/grammars/test_output.py
+++ b/tests/grammars/test_output.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/helpers/money.py b/tests/helpers/money.py
index 72f64380..2ff81d14 100644
--- a/tests/helpers/money.py
+++ b/tests/helpers/money.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/helpers/ws2p.py b/tests/helpers/ws2p.py
index e5c54cc0..989d1de7 100644
--- a/tests/helpers/ws2p.py
+++ b/tests/helpers/ws2p.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/key/test_ascii_armor.py b/tests/key/test_ascii_armor.py
index 76a6c814..d50205c1 100644
--- a/tests/key/test_ascii_armor.py
+++ b/tests/key/test_ascii_armor.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/key/test_encryption_key.py b/tests/key/test_encryption_key.py
index 94efb81c..339f94fd 100644
--- a/tests/key/test_encryption_key.py
+++ b/tests/key/test_encryption_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/key/test_public_key.py b/tests/key/test_public_key.py
index 1fc4770f..ba1771a1 100644
--- a/tests/key/test_public_key.py
+++ b/tests/key/test_public_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/key/test_signing_key.py b/tests/key/test_signing_key.py
index 2ad99072..1bd9a4ae 100644
--- a/tests/key/test_signing_key.py
+++ b/tests/key/test_signing_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/tests/key/test_verifying_key.py b/tests/key/test_verifying_key.py
index 28caa22f..1ae08ab1 100644
--- a/tests/key/test_verifying_key.py
+++ b/tests/key/test_verifying_key.py
@@ -1,5 +1,5 @@
 """
-Copyright  2014-2020 Vincent Texier <vit@free.fr>
+Copyright  2014-2021 Vincent Texier <vit@free.fr>
 
 DuniterPy is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
-- 
GitLab