From 1785fe367b76002ee087bedf1ebbb523cbb76d56 Mon Sep 17 00:00:00 2001 From: Philippe Schmouker Date: Mon, 29 Aug 2022 02:17:12 +0200 Subject: [PATCH] Modified copyright dates --- LICENSE | 2 +- PyRandLib/LICENSE | 2 +- PyRandLib/README.md | 2 +- PyRandLib/__init__.py | 2 +- PyRandLib/baselcg.py | 2 +- PyRandLib/baselfib64.py | 2 +- PyRandLib/basemrg.py | 2 +- PyRandLib/baserandom.py | 2 +- PyRandLib/fastrand32.py | 2 +- PyRandLib/fastrand63.py | 2 +- PyRandLib/lfib116.py | 2 +- PyRandLib/lfib1340.py | 2 +- PyRandLib/lfib668.py | 2 +- PyRandLib/lfib78.py | 2 +- PyRandLib/mrgrand1457.py | 2 +- PyRandLib/mrgrand287.py | 2 +- PyRandLib/mrgrand49507.py | 2 +- PyRandLib/types.py | 2 +- README.md | 2 +- 19 files changed, 19 insertions(+), 19 deletions(-) diff --git a/LICENSE b/LICENSE index c659d4d..612929c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh. +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/LICENSE b/PyRandLib/LICENSE index 552c5c6..1e480cb 100644 --- a/PyRandLib/LICENSE +++ b/PyRandLib/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/README.md b/PyRandLib/README.md index d902622..5402b3a 100644 --- a/PyRandLib/README.md +++ b/PyRandLib/README.md @@ -9,7 +9,7 @@ If you decide to use this library, please add the copyright notice to your software as stated in the LICENSE file. ``` -Copyright (c) 2016-2021 Philippe Schmouker, +Copyright (c) 2016-2022 Philippe Schmouker, Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/__init__.py b/PyRandLib/__init__.py index bd5f6e8..1a1332b 100644 --- a/PyRandLib/__init__.py +++ b/PyRandLib/__init__.py @@ -3,7 +3,7 @@ It is provided under MIT License. Please see files README.md and LICENSE. -Copyright (c) 2016-2021 Philippe Schmouker +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com """ from .baselcg import BaseLCG diff --git a/PyRandLib/baselcg.py b/PyRandLib/baselcg.py index 45bf13a..49c4bb7 100644 --- a/PyRandLib/baselcg.py +++ b/PyRandLib/baselcg.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/baselfib64.py b/PyRandLib/baselfib64.py index b03f583..d4b896a 100644 --- a/PyRandLib/baselfib64.py +++ b/PyRandLib/baselfib64.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/basemrg.py b/PyRandLib/basemrg.py index cd568c9..4c940bb 100644 --- a/PyRandLib/basemrg.py +++ b/PyRandLib/basemrg.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/baserandom.py b/PyRandLib/baserandom.py index 5c35289..506e0b8 100644 --- a/PyRandLib/baserandom.py +++ b/PyRandLib/baserandom.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/fastrand32.py b/PyRandLib/fastrand32.py index ef240df..5d4c4ee 100644 --- a/PyRandLib/fastrand32.py +++ b/PyRandLib/fastrand32.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/fastrand63.py b/PyRandLib/fastrand63.py index f9dfd81..64d61ff 100644 --- a/PyRandLib/fastrand63.py +++ b/PyRandLib/fastrand63.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/lfib116.py b/PyRandLib/lfib116.py index 595dc3e..bec083c 100644 --- a/PyRandLib/lfib116.py +++ b/PyRandLib/lfib116.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/lfib1340.py b/PyRandLib/lfib1340.py index e7d4944..abe50fb 100644 --- a/PyRandLib/lfib1340.py +++ b/PyRandLib/lfib1340.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/lfib668.py b/PyRandLib/lfib668.py index 95d28d8..1a879db 100644 --- a/PyRandLib/lfib668.py +++ b/PyRandLib/lfib668.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/lfib78.py b/PyRandLib/lfib78.py index 8a4a903..3eb9b03 100644 --- a/PyRandLib/lfib78.py +++ b/PyRandLib/lfib78.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/mrgrand1457.py b/PyRandLib/mrgrand1457.py index e9fcc36..45ba0c4 100644 --- a/PyRandLib/mrgrand1457.py +++ b/PyRandLib/mrgrand1457.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/mrgrand287.py b/PyRandLib/mrgrand287.py index bd33fca..8c07a4f 100644 --- a/PyRandLib/mrgrand287.py +++ b/PyRandLib/mrgrand287.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/mrgrand49507.py b/PyRandLib/mrgrand49507.py index 69daca7..2f56fc9 100644 --- a/PyRandLib/mrgrand49507.py +++ b/PyRandLib/mrgrand49507.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- """ -Copyright (c) 2016-2021 Philippe Schmouker, schmouk (at) typee.ovh +Copyright (c) 2016-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/PyRandLib/types.py b/PyRandLib/types.py index a4956c0..cabf22b 100644 --- a/PyRandLib/types.py +++ b/PyRandLib/types.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Copyright (c) 2021 Philippe Schmouker +Copyright (c) 2021-2022 Philippe Schmouker, schmouk (at) gmail.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index ac935c7..72c1b5e 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ If you decide to use this library, please add the copyright notice to your software as stated in the LICENSE file. ``` -Copyright (c) 2016-2021 Philippe Schmouker, +Copyright (c) 2016-2022 Philippe Schmouker, Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal