From 032f2e01679e7ae8687d80d7c86e5d5bcb6185a4 Mon Sep 17 00:00:00 2001 From: Chris Conlon Date: Fri, 3 Jan 2020 16:24:35 -0800 Subject: [PATCH] update copyright to 2020 --- docs/Makefile | 2 +- examples/client.py | 2 +- examples/server.py | 2 +- setup.py | 2 +- src/wolfssl/__about__.py | 4 ++-- src/wolfssl/__init__.py | 2 +- src/wolfssl/_build_ffi.py | 2 +- src/wolfssl/_build_wolfssl.py | 2 +- src/wolfssl/_methods.py | 2 +- src/wolfssl/exceptions.py | 2 +- src/wolfssl/utils.py | 2 +- tests/conftest.py | 2 +- tests/test_client.py | 2 +- tests/test_context.py | 2 +- tests/test_methods.py | 2 +- 15 files changed, 16 insertions(+), 16 deletions(-) diff --git a/docs/Makefile b/docs/Makefile index 656ec61..b85237a 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -1,6 +1,6 @@ # Makefile for Sphinx documentation # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/examples/client.py b/examples/client.py index 11f21a7..5608883 100755 --- a/examples/client.py +++ b/examples/client.py @@ -4,7 +4,7 @@ # # client.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/examples/server.py b/examples/server.py index 5ebbdb0..820cbf4 100755 --- a/examples/server.py +++ b/examples/server.py @@ -4,7 +4,7 @@ # # server.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/setup.py b/setup.py index ec55ff1..d6a2a62 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfssl/__about__.py b/src/wolfssl/__about__.py index f21fd01..110f8d1 100644 --- a/src/wolfssl/__about__.py +++ b/src/wolfssl/__about__.py @@ -2,7 +2,7 @@ # # __about__.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # @@ -40,7 +40,7 @@ __author__ = "wolfSSL Inc." __email__ = "info@wolfssl.com" __license__ = "GPLv2 or Commercial License" -__copyright__ = "Copyright (C) 2006-2019 wolfSSL Inc" +__copyright__ = "Copyright (C) 2006-2020 wolfSSL Inc" __all__ = [ "__title__", "__summary__", "__uri__", "__version__", diff --git a/src/wolfssl/__init__.py b/src/wolfssl/__init__.py index ee796b7..f48a968 100644 --- a/src/wolfssl/__init__.py +++ b/src/wolfssl/__init__.py @@ -2,7 +2,7 @@ # # __init__.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfssl/_build_ffi.py b/src/wolfssl/_build_ffi.py index b1af3b5..cd8dc43 100644 --- a/src/wolfssl/_build_ffi.py +++ b/src/wolfssl/_build_ffi.py @@ -2,7 +2,7 @@ # # build_ffi.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfssl/_build_wolfssl.py b/src/wolfssl/_build_wolfssl.py index a5d9751..b600aae 100644 --- a/src/wolfssl/_build_wolfssl.py +++ b/src/wolfssl/_build_wolfssl.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfssl/_methods.py b/src/wolfssl/_methods.py index 8b81dcf..b5cf5a0 100644 --- a/src/wolfssl/_methods.py +++ b/src/wolfssl/_methods.py @@ -2,7 +2,7 @@ # # _methods.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfssl/exceptions.py b/src/wolfssl/exceptions.py index 284f21b..998559a 100644 --- a/src/wolfssl/exceptions.py +++ b/src/wolfssl/exceptions.py @@ -2,7 +2,7 @@ # # exceptions.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfssl/utils.py b/src/wolfssl/utils.py index 134c8ae..919037a 100644 --- a/src/wolfssl/utils.py +++ b/src/wolfssl/utils.py @@ -2,7 +2,7 @@ # # utils.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/conftest.py b/tests/conftest.py index bbc7fc0..afee625 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -2,7 +2,7 @@ # # conftest.py # -# Copyright (C) 2006-2017 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/test_client.py b/tests/test_client.py index e32fd79..704a656 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -2,7 +2,7 @@ # # test_client.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/test_context.py b/tests/test_context.py index a86937f..d0d52f1 100644 --- a/tests/test_context.py +++ b/tests/test_context.py @@ -2,7 +2,7 @@ # # test_context.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/test_methods.py b/tests/test_methods.py index d046606..882f6ca 100644 --- a/tests/test_methods.py +++ b/tests/test_methods.py @@ -2,7 +2,7 @@ # # test_methods.py # -# Copyright (C) 2006-2019 wolfSSL Inc. +# Copyright (C) 2006-2020 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) #