From a79dc9a889fbba22ba18745ee14607a961953565 Mon Sep 17 00:00:00 2001 From: Luca Cominardi Date: Mon, 14 Oct 2024 15:30:22 +0200 Subject: [PATCH 1/2] Point to latest 1.0.0rc1 version --- content/docs/getting-started/first-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/getting-started/first-app.md b/content/docs/getting-started/first-app.md index bf76180f..6a370fe6 100644 --- a/content/docs/getting-started/first-app.md +++ b/content/docs/getting-started/first-app.md @@ -22,7 +22,7 @@ Let's get started! First thing first, we need to install the [zenoh Python library](https://github.com/eclipse-zenoh/zenoh-python). ```bash -pip install eclipse-zenoh==1.0.0b2 +pip install eclipse-zenoh==1.0.0rc1 ``` *The examples are updated to use the 1.0 version currently in beta, which is why version must be specified in the installation command. You can find more information about the 1.0 changes in the [migration guides](https://zenoh.io/docs/migration_1.0/concepts/).* From 6a18e5ab4e25bddd09944958a8bac10c0e5328fa Mon Sep 17 00:00:00 2001 From: Luca Cominardi Date: Mon, 14 Oct 2024 15:33:07 +0200 Subject: [PATCH 2/2] Update text --- content/docs/getting-started/first-app.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/getting-started/first-app.md b/content/docs/getting-started/first-app.md index 6a370fe6..e4d8eeea 100644 --- a/content/docs/getting-started/first-app.md +++ b/content/docs/getting-started/first-app.md @@ -24,7 +24,7 @@ First thing first, we need to install the [zenoh Python library](https://github. ```bash pip install eclipse-zenoh==1.0.0rc1 ``` -*The examples are updated to use the 1.0 version currently in beta, which is why version must be specified in the installation command. You can find more information about the 1.0 changes in the [migration guides](https://zenoh.io/docs/migration_1.0/concepts/).* +*The examples are updated to use the 1.0 version currently in rc, which is why version must be specified in the installation command. You can find more information about the 1.0 changes in the [migration guides](https://zenoh.io/docs/migration_1.0/concepts/).* Then, let's write an application, `z_sensor.py` that will produce temperature measurements at each second: