Bump version to 2.1.2

This commit is contained in:
Markus Opolka 2022-09-15 15:25:38 +02:00
parent 49b338bdb6
commit 46271c961b
2 changed files with 5 additions and 3 deletions

View File

@ -38,7 +38,7 @@ Generic Nagios plugin which checks json values from a given endpoint against
argument specified rules and determines the status and performance data for
that service.
Version: 2.0.0 (2020-03-22)
Version: 2.1.2 (2022-09-15)
optional arguments:
-h, --help show this help message and exit
@ -46,6 +46,8 @@ optional arguments:
-s, --ssl use TLS to connect to remote host
-H HOST, --host HOST remote host to query
-k, --insecure do not check server SSL certificate
-X {GET,POST}, --request {GET,POST}
Specifies a custom request method to use when communicating with the HTTP server
-V, --version print version of this plugin
--cacert CACERT SSL CA certificate
--cert CERT SSL client certificate

View File

@ -24,8 +24,8 @@ WARNING_CODE = 1
CRITICAL_CODE = 2
UNKNOWN_CODE = 3
__version__ = '2.0.0'
__version_date__ = '2020-03-22'
__version__ = '2.1.2'
__version_date__ = '2022-09-15'
class NagiosHelper:
"""