Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,10 @@ nmcli.connection.down(name: str, wait: int = None) -> None
Show details for specified connections.

Use `show_secrets` argument to reveal associated secrets as well.
Use `active` argument to show only the active profile.

```
nmcli.connection.show(name: str, show_secrets: bool = False) -> ConnectionDetails
nmcli.connection.show(name: str, show_secrets: bool = False, active: bool = False) -> ConnectionDetails
```

#### nmcli.connection.reload
Expand Down Expand Up @@ -458,6 +459,10 @@ nmcli.set_lang(lang: str) -> None

## Change Log

### 1.6.0

- Added active option to `nmcli.connection.show`

### 1.5.0

- Added show_secrets option to `nmcli.connection.show`
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "nmcli"
version = "1.5.0"
version = "1.6.0"
description = "A python wrapper library for the network-manager cli client"
readme = "README.md"
authors = [{name = "ushiboy"}]
Expand Down