diff --git a/README.md b/README.md index 447bf4c..924a477 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@

ONVIF Python

-Codacy grade + Ask DeepWiki -PyPI Version +PyPI Version Pepy Total Downloads
Build @@ -319,7 +319,7 @@ usage: onvif [-h] [--host HOST] [--port PORT] [--username USERNAME] [--password [--cache {all,db,mem,none}] [--health-check-interval HEALTH_CHECK_INTERVAL] [--output OUTPUT] [--version] [service] [method] [params ...] -ONVIF Terminal Client — v0.2.5 +ONVIF Terminal Client — v0.2.6 https://github.com/nirsimetri/onvif-python positional arguments: @@ -400,7 +400,7 @@ Examples: 2. Interactive Shell ```bash -ONVIF Interactive Shell — v0.2.5 +ONVIF Interactive Shell — v0.2.6 https://github.com/nirsimetri/onvif-python Basic Commands: diff --git a/README_ID.md b/README_ID.md index 04b1847..d6eda97 100644 --- a/README_ID.md +++ b/README_ID.md @@ -1,9 +1,9 @@

ONVIF Python

-Codacy grade + Ask DeepWiki -PyPI Version +PyPI Version Pepy Total Downloads
Build @@ -319,7 +319,7 @@ usage: onvif [-h] [--host HOST] [--port PORT] [--username USERNAME] [--password [--cache {all,db,mem,none}] [--health-check-interval HEALTH_CHECK_INTERVAL] [--output OUTPUT] [--version] [service] [method] [params ...] -ONVIF Terminal Client — v0.2.5 +ONVIF Terminal Client — v0.2.6 https://github.com/nirsimetri/onvif-python positional arguments: @@ -401,7 +401,7 @@ Examples: ```bash -ONVIF Interactive Shell — v0.2.5 +ONVIF Interactive Shell — v0.2.6 https://github.com/nirsimetri/onvif-python Basic Commands: diff --git a/onvif/cli/interactive.py b/onvif/cli/interactive.py index 7bc5201..88c5d9d 100644 --- a/onvif/cli/interactive.py +++ b/onvif/cli/interactive.py @@ -194,7 +194,7 @@ def __init__(self, client: ONVIFClient, args): " / __ \\/ | / / | / / _/ ____/", " / / / / |/ /| | / // // /_ ", "/ /_/ / /| / | |/ // // __/ ", - "\\____/_/ |_/ |___/___/_/ v0.2.5", + "\\____/_/ |_/ |___/___/_/ v0.2.6", " ", ] @@ -1400,7 +1400,7 @@ def do_help(self, line): super().do_help(line) else: help_text = f""" -{colorize('ONVIF Interactive Shell — v0.2.5', 'cyan')}\n{colorize('https://github.com/nirsimetri/onvif-python', 'white')} +{colorize('ONVIF Interactive Shell — v0.2.6', 'cyan')}\n{colorize('https://github.com/nirsimetri/onvif-python', 'white')} {colorize('Basic Commands:', 'yellow')} capabilities, caps - Show device capabilities diff --git a/onvif/cli/main.py b/onvif/cli/main.py index 2003a9e..1bc5d11 100644 --- a/onvif/cli/main.py +++ b/onvif/cli/main.py @@ -22,7 +22,7 @@ def create_parser(): """Create argument parser for ONVIF CLI""" parser = argparse.ArgumentParser( prog="onvif", - description=f"{colorize('ONVIF Terminal Client', 'yellow')} — v0.2.5\nhttps://github.com/nirsimetri/onvif-python", + description=f"{colorize('ONVIF Terminal Client', 'yellow')} — v0.2.6\nhttps://github.com/nirsimetri/onvif-python", formatter_class=argparse.RawDescriptionHelpFormatter, epilog=f""" Examples: @@ -188,7 +188,7 @@ def main(): # Show ONVIF CLI version if args.version: - print(colorize("0.2.5", "yellow")) + print(colorize("0.2.6", "yellow")) sys.exit(0) # Handle product search diff --git a/pyproject.toml b/pyproject.toml index b17ccca..ea7d165 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "onvif-python" -version = "0.2.5" +version = "0.2.6" description = "A modern Python library for ONVIF-compliant devices" readme = "README.md" requires-python = ">=3.9"