From 69d21052f1949eeb28a2ecf2b7e156cd107a6271 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mois=C3=A9s=20Guimar=C3=A3es?= Date: Tue, 19 Dec 2017 13:47:02 -0300 Subject: [PATCH] updates copyright year --- docs/conf.py | 4 ++-- setup.py | 2 +- src/wolfcrypt/__init__.py | 2 +- src/wolfcrypt/_build_ffi.py | 2 +- src/wolfcrypt/_build_wolfssl.py | 2 +- src/wolfcrypt/ciphers.py | 2 +- src/wolfcrypt/exceptions.py | 2 +- src/wolfcrypt/hashes.py | 2 +- src/wolfcrypt/random.py | 2 +- src/wolfcrypt/utils.py | 2 +- tests/test_ciphers.py | 2 +- tests/test_hashes.py | 2 +- tests/test_random.py | 2 +- 13 files changed, 14 insertions(+), 14 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3e9de70..fde01e6 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -53,7 +53,7 @@ master_doc = 'index' # General information about the project. project = u'wolfcrypt' -copyright = u'2016, wolfSSL Inc. All rights reserved' +copyright = u'2017, wolfSSL Inc. All rights reserved' author = u'wolfSSL' # The version info for the project you're documenting, acts as replacement for @@ -61,7 +61,7 @@ author = u'wolfSSL' # built documents. # -base_dir = os.path.join(os.path.dirname(__file__), os.pardir) +base_dir = os.path.join(os.path.dirname(__file__), os.pardir, "src") about = {} with open(os.path.join(base_dir, "wolfcrypt", "__about__.py")) as f: exec(f.read(), about) diff --git a/setup.py b/setup.py index 34867e7..c8f62b1 100755 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/__init__.py b/src/wolfcrypt/__init__.py index a0c2db3..d582d12 100644 --- a/src/wolfcrypt/__init__.py +++ b/src/wolfcrypt/__init__.py @@ -1,6 +1,6 @@ # __init__.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/_build_ffi.py b/src/wolfcrypt/_build_ffi.py index a4bfb2c..79ff66a 100644 --- a/src/wolfcrypt/_build_ffi.py +++ b/src/wolfcrypt/_build_ffi.py @@ -1,6 +1,6 @@ # build_ffi.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/_build_wolfssl.py b/src/wolfcrypt/_build_wolfssl.py index c7eafa3..fafd489 100644 --- a/src/wolfcrypt/_build_wolfssl.py +++ b/src/wolfcrypt/_build_wolfssl.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/ciphers.py b/src/wolfcrypt/ciphers.py index 27a6b5b..304232c 100644 --- a/src/wolfcrypt/ciphers.py +++ b/src/wolfcrypt/ciphers.py @@ -1,6 +1,6 @@ # ciphers.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/exceptions.py b/src/wolfcrypt/exceptions.py index 838a2b2..29ef5e5 100644 --- a/src/wolfcrypt/exceptions.py +++ b/src/wolfcrypt/exceptions.py @@ -1,6 +1,6 @@ # exceptions.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/hashes.py b/src/wolfcrypt/hashes.py index 9f2e71c..75a4379 100644 --- a/src/wolfcrypt/hashes.py +++ b/src/wolfcrypt/hashes.py @@ -1,6 +1,6 @@ # hashes.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/random.py b/src/wolfcrypt/random.py index 640dee8..7c19c5c 100644 --- a/src/wolfcrypt/random.py +++ b/src/wolfcrypt/random.py @@ -1,6 +1,6 @@ # random.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/src/wolfcrypt/utils.py b/src/wolfcrypt/utils.py index 9f7369c..ec3a038 100644 --- a/src/wolfcrypt/utils.py +++ b/src/wolfcrypt/utils.py @@ -1,6 +1,6 @@ # utils.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/test_ciphers.py b/tests/test_ciphers.py index 0f3cc3d..307e090 100644 --- a/tests/test_ciphers.py +++ b/tests/test_ciphers.py @@ -1,6 +1,6 @@ # test_ciphers.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/test_hashes.py b/tests/test_hashes.py index 1fb9e39..435e9b6 100644 --- a/tests/test_hashes.py +++ b/tests/test_hashes.py @@ -1,6 +1,6 @@ # test_hashes.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) # diff --git a/tests/test_random.py b/tests/test_random.py index cc53efd..0ae5c1c 100644 --- a/tests/test_random.py +++ b/tests/test_random.py @@ -1,6 +1,6 @@ # test_random.py # -# Copyright (C) 2006-2016 wolfSSL Inc. +# Copyright (C) 2006-2017 wolfSSL Inc. # # This file is part of wolfSSL. (formerly known as CyaSSL) #