Skip to content

Commit 3e9e75e

Browse files
Bump version to 0.2.0, clarify docs
1 parent 1d3b786 commit 3e9e75e

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The provided methods and data models ensure easy handling, robust validation, co
2929
### Prerequisites
3030

3131
- Access to a VideoIPath Server (version 2023.4.2 or higher, LTS versions recommended)
32-
- A user account with API access credentials
32+
- Username and Password for a user account with API access
3333
- Python 3.11 or higher
3434

3535
### Installation
@@ -39,7 +39,7 @@ The package is available via the [Python Package Index (PyPI)](https://pypi.org/
3939
#### Install the package using pip
4040

4141
```bash
42-
pip3 install videoipath-automation-tool
42+
pip install videoipath-automation-tool
4343
```
4444

4545
### A Simple Example: Adding a Device to the Inventory
@@ -49,7 +49,7 @@ pip3 install videoipath-automation-tool
4949
from videoipath_automation_tool import VideoIPathApp
5050

5151
# Initialize the VideoIPathApp
52-
app = VideoIPathApp(server_address="10.1.100.10", username="api-user", password="veryStrongPassword")
52+
app = VideoIPathApp(server_address="10.1.100.10", username="api-user", password="veryStrongPassword", use_https=False, verify_ssl_cert=False)
5353

5454
# Create a device object with NMOS Multidevice driver
5555
staged_device = app.inventory.create_device(driver="com.nevion.NMOS_multidevice-0.1.0")

docs/development-and-release.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ For stable/official versions, the common semver pattern is used:
2222
For development versions, there are multiple options - since this package doesn't have a complex testing and verification process for release,
2323
a simple format is used:
2424

25-
`<Major>.<Minor>.<Patch>.dev+<short commit SHA>`
25+
`<Major>.<Minor>.<Patch>.dev<GitHub Action Run ID>`
2626

2727
Pip won't treat those versions as stable, they can only be installed by specifying the exact version or using the `--pre` flag.
2828

@@ -71,7 +71,7 @@ flowchart TD
7171
subgraph run-mr-pipeline["Run Merge-Request Pipeline"]
7272
mr-tests["Run Tests [Pipeline]"]
7373
mr-build["Build the Package [Pipeline]"]
74-
publish-dev-version["Publish Dev Version, e.g. 1.3.6.dev+d882293d [Pipeline]"]
74+
publish-dev-version["Publish Dev Version, e.g. 1.3.6.dev256 [Pipeline]"]
7575
7676
mr-tests --> mr-build
7777
mr-build --> publish-dev-version

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "videoipath-automation-tool"
3-
version = "0.1.6"
3+
version = "0.2.0"
44
description = "A Python package for automating VideoIPath configuration workflows."
55
authors = ["Paul Winterstein <paul.winterstein@swr.de>"]
66
maintainers = ["SWR Media-over-IP Team <moip@swr.de>", "Josia Hildebrandt <manuel_josia.hildebrandt@swr.de>"]

0 commit comments

Comments
 (0)