Skip to content

Commit

Permalink
set version to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kbr committed Aug 24, 2022
1 parent 3a5408e commit 5e72e66
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docs/sources/version_history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Version History
===============


development
-----------
1.10.0 - 2022-8-24
------------------

- FritzConnection

Expand All @@ -21,9 +21,9 @@ development
- New property `connection_service`
- New property `has_wan_support` (#162)
- New property `has_wan_enabled` (#147)
- New property `upnp_enabled()` (#153)
- New property `device_has_mesh_support` (#146)
- New method `get_default_connection_service` (#146)
- New method `upnp_enabled()` (#153)
- New method `get_device_info()` (#155)

- FritzWLAN:
Expand Down
2 changes: 1 addition & 1 deletion fritzconnection/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
https://fritzconnection.readthedocs.io/
"""

__version__ = "1.9.1"
__version__ = "1.10.0"

# import shortcuts
from .core.fritzconnection import FritzConnection
Expand Down
2 changes: 1 addition & 1 deletion fritzconnection/core/fritzconnection.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class FritzConnection:
in the environment: FRITZ_USECACHE (True|False), FRITZ_CACHEFORMAT
(json|pickle) and FRITZ_CACHEDIRECTORY (a path).
.. versionadded:: development
.. versionadded:: 1.10
"""

def __init__(
Expand Down
2 changes: 1 addition & 1 deletion fritzconnection/lib/fritzhosts.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ def get_hosts_attributes(self):
returned data in a list of dictionaries describing the known
hosts.
.. versionadded:: development
.. versionadded:: 1.10
"""
result = self._action("X_AVM-DE_GetHostListPath")
url = result["NewX_AVM-DE_HostListPath"]
Expand Down
2 changes: 1 addition & 1 deletion fritzconnection/lib/fritzstatus.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def get_device_info(self):
product_class, serial_number, software_version, hardware_version,
spec_version, provisioning_code, up_time, device_log
.. versionadded:: development
.. versionadded:: 1.10
"""
return ArgumentNamespace(fc.call_action("DeviceInfo1", "GetInfo"))
Expand Down
4 changes: 2 additions & 2 deletions fritzconnection/lib/fritztools.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ class ArgumentNamespace(SimpleNamespace):
If both arguments `mapping` and `extract` are given, `mapping` has
precedence and `extract` gets ignored.
.. versionadded:: development
.. versionadded:: 1.10
"""

Expand Down Expand Up @@ -179,7 +179,7 @@ def rewrite_argument(name, suppress_new=True):
characters are handled as a group: "ManufacturerOUI" ->
"manufacturer_oui".
.. versionadded:: development
.. versionadded:: 1.10
"""
new = "new_"
Expand Down
4 changes: 2 additions & 2 deletions fritzconnection/lib/fritzwlan.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def get_beacon_security(instance, security):
This function is not intended to get called directly.
.. versionadded:: development
.. versionadded:: 1.10
"""
if not security:
info = instance.get_info()
Expand Down Expand Up @@ -100,7 +100,7 @@ def get_wifi_qr_code(instance, kind='svg',
`scale` defines the size of the produced qr-code. Default value is 4.
.. versionadded:: development
.. versionadded:: 1.10
"""
stream = io.BytesIO()
Expand Down

0 comments on commit 5e72e66

Please sign in to comment.