Skip to content

Commit 29d1ffb

Browse files
committed
Bump version 0.2.1 → 0.2.2
1 parent 8f139f3 commit 29d1ffb

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![Codacy grade](https://img.shields.io/codacy/grade/bff08a94e4d447b690cea49c6594826d?label=Code%20Quality&logo=codacy)](https://app.codacy.com/gh/nirsimetri/onvif-python/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
66
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/nirsimetri/onvif-python)
7-
[![PyPI](https://img.shields.io/badge/PyPI-0.2.1-orange?logo=archive)](https://pypi.org/project/onvif-python/)
7+
[![PyPI](https://img.shields.io/badge/PyPI-0.2.2-orange?logo=archive)](https://pypi.org/project/onvif-python/)
88
[![Downloads](https://img.shields.io/pypi/dm/onvif-python?label=Downloads&color=red)](https://clickpy.clickhouse.com/dashboard/onvif-python)
99
<br>
1010
[![Build](https://github.com/nirsimetri/onvif-python/actions/workflows/python-app.yml/badge.svg?branch=main)](https://github.com/nirsimetri/onvif-python/actions/workflows/python-app.yml)
@@ -313,7 +313,7 @@ usage: onvif [-h] [--host HOST] [--port PORT] [--username USERNAME] [--password
313313
[--no-verify] [--no-patch] [--interactive] [--debug] [--wsdl WSDL] [--cache {all,db,mem,none}] [--health-check-interval HEALTH_CHECK_INTERVAL] [--version]
314314
[service] [method] [params ...]
315315

316-
ONVIF Terminal Client — v0.2.1
316+
ONVIF Terminal Client — v0.2.2
317317
https://github.com/nirsimetri/onvif-python
318318

319319
positional arguments:
@@ -386,7 +386,7 @@ Examples:
386386
<summary><b>2. Interactive Shell</b></summary>
387387

388388
```bash
389-
ONVIF Interactive Shell — v0.2.1
389+
ONVIF Interactive Shell — v0.2.2
390390
https://github.com/nirsimetri/onvif-python
391391

392392
Basic Commands:
@@ -1065,19 +1065,19 @@ Some ONVIF services have multiple bindings in the same WSDL. These typically inc
10651065
2. **Security (Advanced Security)**
10661066
- **Root:** `AdvancedSecurityServiceBinding`
10671067
- **Sub-bindings:**
1068+
- `JWTBinding`
10681069
- `AuthorizationServerBinding`
10691070
- `KeystoreBinding`
1070-
- `JWTBinding`
10711071
- `Dot1XBinding`
10721072
- `TLSServerBinding`
10731073
- `MediaSigningBinding`
10741074

10751075
Usage in library:
10761076
```python
10771077
client.security() # root binding
1078+
client.jwt() # sub-binding accessor
10781079
client.authorizationserver(xaddr) # sub-binding accessor (requires xAddr)
10791080
client.keystore(xaddr) # ..
1080-
client.jwt(xaddr)
10811081
client.dot1x(xaddr)
10821082
client.tlsserver(xaddr)
10831083
client.mediasigning(xaddr)

README_ID.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
[![Codacy grade](https://img.shields.io/codacy/grade/bff08a94e4d447b690cea49c6594826d?label=Code%20Quality&logo=codacy)](https://app.codacy.com/gh/nirsimetri/onvif-python/dashboard?utm_source=gh&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
66
[![Ask DeepWiki](https://deepwiki.com/badge.svg)](https://deepwiki.com/nirsimetri/onvif-python)
7-
[![PyPI](https://img.shields.io/badge/PyPI-0.2.1-orange?logo=archive)](https://pypi.org/project/onvif-python/)
7+
[![PyPI](https://img.shields.io/badge/PyPI-0.2.2-orange?logo=archive)](https://pypi.org/project/onvif-python/)
88
[![Downloads](https://img.shields.io/pypi/dm/onvif-python?label=Downloads&color=red)](https://clickpy.clickhouse.com/dashboard/onvif-python)
99
<br>
1010
[![Build](https://github.com/nirsimetri/onvif-python/actions/workflows/python-app.yml/badge.svg?branch=main)](https://github.com/nirsimetri/onvif-python/actions/workflows/python-app.yml)
@@ -313,7 +313,7 @@ usage: onvif [-h] [--host HOST] [--port PORT] [--username USERNAME] [--password
313313
[--no-verify] [--no-patch] [--interactive] [--debug] [--wsdl WSDL] [--cache {all,db,mem,none}] [--health-check-interval HEALTH_CHECK_INTERVAL] [--version]
314314
[service] [method] [params ...]
315315

316-
ONVIF Terminal Client — v0.2.1
316+
ONVIF Terminal Client — v0.2.2
317317
https://github.com/nirsimetri/onvif-python
318318

319319
positional arguments:
@@ -387,7 +387,7 @@ Examples:
387387

388388

389389
```bash
390-
ONVIF Interactive Shell — v0.2.1
390+
ONVIF Interactive Shell — v0.2.2
391391
https://github.com/nirsimetri/onvif-python
392392

393393
Basic Commands:
@@ -1064,20 +1064,20 @@ Beberapa layanan ONVIF memiliki banyak binding dalam WSDL yang sama. Biasanya me
10641064

10651065
2. **Security (Advanced Security)**
10661066
- **Root:** `AdvancedSecurityServiceBinding`
1067-
- **Sub-binding:**
1067+
- **Sub-bindings:**
1068+
- `JWTBinding`
10681069
- `AuthorizationServerBinding`
10691070
- `KeystoreBinding`
1070-
- `JWTBinding`
10711071
- `Dot1XBinding`
10721072
- `TLSServerBinding`
10731073
- `MediaSigningBinding`
10741074

1075-
Penggunaan di pustaka:
1075+
Usage in library:
10761076
```python
10771077
client.security() # root binding
1078-
client.authorizationserver(xaddr) # sub-binding accessor (memerlukan xAddr)
1078+
client.jwt() # sub-binding accessor
1079+
client.authorizationserver(xaddr) # sub-binding accessor (requires xAddr)
10791080
client.keystore(xaddr) # ..
1080-
client.jwt(xaddr)
10811081
client.dot1x(xaddr)
10821082
client.tlsserver(xaddr)
10831083
client.mediasigning(xaddr)

onvif/cli/interactive.py

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

onvif/cli/main.py

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "onvif-python"
7-
version = "0.2.1"
7+
version = "0.2.2"
88
description = "A modern Python library for ONVIF-compliant devices"
99
readme = "README.md"
1010
requires-python = ">=3.9"

0 commit comments

Comments
 (0)