Skip to content

Commit 532d8e3

Browse files
committed
Prepare release 0.6.0
1 parent 9820917 commit 532d8e3

File tree

8 files changed

+15
-15
lines changed

8 files changed

+15
-15
lines changed

Cargo.lock

+6-6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
]
1414

1515
[workspace.package]
16-
version = "0.6.0-alpha.4"
16+
version = "0.6.0"
1717
edition = "2021"
1818

1919
authors = ["Software Mansion <[email protected]>"]

examples/hello_workspaces/Scarb.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ test = "snforge"
1010
exit_first = true
1111

1212
[workspace.dependencies]
13-
starknet = ">=2.1.0-rc0"
13+
starknet = "2.1.0"
1414

1515
[workspace.package]
1616
version = "0.1.0"

examples/starknet_hello_world/Scarb.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ version = "0.1.0"
55
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest
66

77
[dependencies]
8-
starknet = ">=2.1.0-rc0"
8+
starknet = "2.1.0"
99

1010
[[target.starknet-contract]]

examples/starknet_multiple_contracts/Scarb.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ version = "0.1.0"
55
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest
66

77
[dependencies]
8-
starknet = ">=2.1.0-rc0"
8+
starknet = "2.1.0"
99

1010
[[target.starknet-contract]]

website/pages/docs/cheatsheet.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Add following to `Scarb.toml`:
4646

4747
```toml copy
4848
[dependencies]
49-
starknet = ">=2.1.0-rc2"
49+
starknet = "2.1.0"
5050

5151
[[target.starknet-contract]]
5252
```

website/pages/docs/starknet/contract-target.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Its version is coupled to Cairo version included in Scarb.
4242

4343
```toml copy
4444
[dependencies]
45-
starknet = ">=2.1.0-rc2"
45+
starknet = "2.1.0"
4646
```
4747

4848
## Sierra contract class generation
@@ -79,7 +79,7 @@ For example, to build `Account` contract defined in `openzeppelin` package, add
7979

8080
```toml
8181
[dependencies]
82-
starknet = ">=2.1.0-rc4"
82+
starknet = "2.1.0"
8383
openzeppelin = { git = "https://github.com/OpenZeppelin/cairo-contracts.git", branch = "cairo-2" }
8484

8585
[[target.starknet-contract]]

website/pages/docs/starknet/starknet-package.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ The version of this package is coupled to Cairo version included in Scarb.
1111

1212
This package is specially treated by Scarb.
1313
To use it, simply declare a dependency on it in your package.
14-
By using the `>=` operator, you will not have to manually update this value on each Cairo upgrade.
14+
By using the `>=` operator, you will not have to manually update this value on each stable Cairo upgrade.
1515

1616
```toml copy
1717
[dependencies]
18-
starknet = ">=2.1.0-rc2"
18+
starknet = ">=2.1.0"
1919
```
2020

2121
## Future work

0 commit comments

Comments
 (0)