From 1def2bd22c797c49179f48b3783b33b0fb99610f Mon Sep 17 00:00:00 2001 From: Leigh McCulloch <351529+leighmcculloch@users.noreply.github.com> Date: Fri, 2 Dec 2022 16:50:09 -0800 Subject: [PATCH] Update version of SDK (#236) --- docs/getting-started/quick-start.mdx | 6 +++--- docs/tutorials/create-a-project.mdx | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/getting-started/quick-start.mdx b/docs/getting-started/quick-start.mdx index 39d40172e..735d3e667 100644 --- a/docs/getting-started/quick-start.mdx +++ b/docs/getting-started/quick-start.mdx @@ -21,7 +21,7 @@ Open the `Cargo.toml`, it should look something like this: ```toml title="Cargo.toml" [package] name = "first-project" -version = "0.2.1" +version = "0.1.0" edition = "2021" ``` @@ -42,10 +42,10 @@ crate-type = ["cdylib"] testutils = ["soroban-sdk/testutils"] [dependencies] -soroban-sdk = "0.2.1" +soroban-sdk = "0.3.1" [dev_dependencies] -soroban-sdk = { version = "0.2.1", features = ["testutils"] } +soroban-sdk = { version = "0.3.1", features = ["testutils"] } [profile.release] opt-level = "z" diff --git a/docs/tutorials/create-a-project.mdx b/docs/tutorials/create-a-project.mdx index 995e4bc2a..6068a88c4 100644 --- a/docs/tutorials/create-a-project.mdx +++ b/docs/tutorials/create-a-project.mdx @@ -19,7 +19,7 @@ Open the `Cargo.toml`, it should look something like this: ```toml title="Cargo.toml" [package] name = "project-name" -version = "0.2.1" +version = "0.1.0" edition = "2021" ``` @@ -44,10 +44,10 @@ The `soroban-sdk` is in early development. Report issues ```toml [dependencies] -soroban-sdk = "0.2.1" +soroban-sdk = "0.3.1" [dev_dependencies] -soroban-sdk = { version = "0.2.1", features = ["testutils"] } +soroban-sdk = { version = "0.3.1", features = ["testutils"] } [features] testutils = ["soroban-sdk/testutils"] @@ -117,10 +117,10 @@ crate-type = ["cdylib"] testutils = ["soroban-sdk/testutils"] [dependencies] -soroban-sdk = "0.2.1" +soroban-sdk = "0.3.1" [dev_dependencies] -soroban-sdk = { version = "0.2.1", features = ["testutils"] } +soroban-sdk = { version = "0.3.1", features = ["testutils"] } [profile.release] opt-level = "z"