From 674e51e852a69645dc57c4fa5e31142770eddbe8 Mon Sep 17 00:00:00 2001 From: Matias Wald Date: Fri, 8 Dec 2023 08:47:53 -0400 Subject: [PATCH] Update hello-world.mdx Updated sdk to 20.0.0 --- docs/getting-started/hello-world.mdx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/getting-started/hello-world.mdx b/docs/getting-started/hello-world.mdx index 7445fb0d..f8a3487a 100644 --- a/docs/getting-started/hello-world.mdx +++ b/docs/getting-started/hello-world.mdx @@ -58,10 +58,10 @@ Add the following sections to the `Cargo.toml` to import the `soroban-sdk`, and ```toml [dependencies] -soroban-sdk = "20.0.0-rc2.2" +soroban-sdk = "20.0.0" [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2.2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] @@ -123,10 +123,10 @@ edition = "2021" crate-type = ["cdylib"] [dependencies] -soroban-sdk = "20.0.0-rc2.2" +soroban-sdk = "20.0.0" [dev_dependencies] -soroban-sdk = { version = "20.0.0-rc2.2", features = ["testutils"] } +soroban-sdk = { version = "20.0.0", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] @@ -338,7 +338,7 @@ The `.wasm` file contains the logic of the contract, as well as the contract's [ Use `soroban contract optimize` to further minimize the size of the `.wasm`. First, re-install soroban-cli with the `opt` feature: - cargo install --locked --version 20.0.0-rc2 soroban-cli --features opt + cargo install --locked --version 20.0.1 soroban-cli --features opt Then build an optimized `.wasm` file: