From e165b57a712417d6db584d93fa2b736a99d72af0 Mon Sep 17 00:00:00 2001 From: kaburagisec Date: Tue, 18 Nov 2025 19:48:39 +0700 Subject: [PATCH 1/2] docs(README): Update Codacy badge image for consistency --- README.md | 2 +- README_ID.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 447bf4c..8d752dd 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

ONVIF Python

-Codacy grade + Ask DeepWiki PyPI Version Pepy Total Downloads diff --git a/README_ID.md b/README_ID.md index 04b1847..1ac92fa 100644 --- a/README_ID.md +++ b/README_ID.md @@ -1,7 +1,7 @@

ONVIF Python

-Codacy grade + Ask DeepWiki PyPI Version Pepy Total Downloads From 7e4d779dd48a062ffcaa999c38f597d8da99f111 Mon Sep 17 00:00:00 2001 From: kaburagisec Date: Tue, 18 Nov 2025 19:56:46 +0700 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20version=200.2.5=20=E2=86=92=200.2.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 6 +++--- README_ID.md | 6 +++--- onvif/cli/interactive.py | 4 ++-- onvif/cli/main.py | 4 ++-- pyproject.toml | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 8d752dd..924a477 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@
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 1ac92fa..d6eda97 100644 --- a/README_ID.md +++ b/README_ID.md @@ -3,7 +3,7 @@
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"