From 9431a429da81b785ddedbebfeeed9bd3fd0c7e5b Mon Sep 17 00:00:00 2001 From: Bastian Leykauf Date: Tue, 13 Aug 2024 14:45:27 +0200 Subject: [PATCH 1/2] fix examples in readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80b9ef0f..9932379b 100644 --- a/README.md +++ b/README.md @@ -89,10 +89,10 @@ from linien_client.deploy import install_remote_server device = Device( host="rp-xxxxxx.local", - user="root", + username="root", password="root" ) -instalL_remote_server(device) +install_remote_server(device) ``` Finally, you can install the server manually, by connecting to the RedPitaya via SSH and @@ -240,7 +240,7 @@ from linien_common.common import MHz, Vpp, ANALOG_OUT_V dev = Device( host="rp-xxxxxx.local", - user="root", + username="root", password="root" ) c = LinienClient(dev) @@ -335,7 +335,7 @@ from time import sleep c = LinienClient( host="rp-xxxxxx.local", - user="root", + username="root", password="root" ) c.connect(autostart_server=True, use_parameter_cache=True) From 8bef1c89234add69562748693513cdc22c690642 Mon Sep 17 00:00:00 2001 From: Bastian Leykauf Date: Tue, 13 Aug 2024 14:50:28 +0200 Subject: [PATCH 2/2] update changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14be3b2b..14d8b354 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Show differences when local and remote parameters do not match by @bleykauf in https://github.com/linien-org/linien/pull/400 * Show voltage on the x-axis when sweeping by @bleykauf in https://github.com/linien-org/linien/pull/404 +### Fixed + +* Fixed example code in the readme by @bleykauf in https://github.com/linien-org/linien/pull/404, thanks to @Andrew-wi for reporting this issue + ## [2.0.4] - 2024-05-30 ### Fixed