Skip to content

Commit

Permalink
Update version of SDK (#236)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Dec 3, 2022
1 parent 82097f9 commit 1def2bd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions docs/getting-started/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand All @@ -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"
Expand Down
10 changes: 5 additions & 5 deletions docs/tutorials/create-a-project.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```

Expand All @@ -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"]
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 1def2bd

Please sign in to comment.