From 1aa3fafabc19546b98882daa61ba1b8a4f2f06f9 Mon Sep 17 00:00:00 2001 From: Petter Date: Wed, 1 Feb 2023 15:59:31 +0000 Subject: [PATCH] OP-57008 Update copyrights to 2023 * Update copyrights to 2023 * Bump version to 2.0.14 --- LICENSE | 2 +- README.md | 2 +- VERSION | 2 +- examples/check_cpu.py | 2 +- examples/check_disk.py | 2 +- examples/check_memory.py | 2 +- plugnpy/__init__.py | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/LICENSE b/LICENSE index 8cc7aaf..bf6a4d7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (C) 2003-2021 Opsview Limited +Copyright (C) 2003-2023 Opsview Limited Apache License Version 2.0, January 2004 diff --git a/README.md b/README.md index 3455799..155bb18 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Master Coverage Status](https://coveralls.io/repos/opsview/plugnpy/badge.svg?branch=master&service=github)](https://coveralls.io/github/opsview/plugnpy?branch=master) * **category** Libraries -* **copyright** 2003-2021 Opsview Ltd +* **copyright** 2003-2023 Opsview Ltd * **license** Apache License Version 2.0 (see [LICENSE](LICENSE)) * **link** https://github.com/opsview/plugnpy diff --git a/VERSION b/VERSION index 82bd22f..3d45b5c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.0.13 +2.0.14 diff --git a/examples/check_cpu.py b/examples/check_cpu.py index 8b1c7d4..41603e9 100644 --- a/examples/check_cpu.py +++ b/examples/check_cpu.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2003-2021 Opsview Limited. All rights reserved +# Copyright (C) 2003-2023 Opsview Limited. 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/examples/check_disk.py b/examples/check_disk.py index c3db1e3..780c229 100644 --- a/examples/check_disk.py +++ b/examples/check_disk.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2003-2021 Opsview Limited. All rights reserved +# Copyright (C) 2003-2023 Opsview Limited. 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/examples/check_memory.py b/examples/check_memory.py index eadcad7..bea07ca 100644 --- a/examples/check_memory.py +++ b/examples/check_memory.py @@ -1,5 +1,5 @@ #!/usr/bin/env python3 -# Copyright (C) 2003-2021 Opsview Limited. All rights reserved +# Copyright (C) 2003-2023 Opsview Limited. 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/plugnpy/__init__.py b/plugnpy/__init__.py index 2ca278b..16e2826 100644 --- a/plugnpy/__init__.py +++ b/plugnpy/__init__.py @@ -1,6 +1,6 @@ """plugnpy - A Simple Python Library for creating Opsview Opspack plugins""" -__version__ = '2.0.13' +__version__ = '2.0.14' __program_name__ = 'plugnpy' from .check import Check