Skip to content

Commit

Permalink
Prepare release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mkaput committed Aug 7, 2023
1 parent 9820917 commit 532d8e3
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ members = [
]

[workspace.package]
version = "0.6.0-alpha.4"
version = "0.6.0"
edition = "2021"

authors = ["Software Mansion <contact@swmansion.com>"]
Expand Down
2 changes: 1 addition & 1 deletion examples/hello_workspaces/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test = "snforge"
exit_first = true

[workspace.dependencies]
starknet = ">=2.1.0-rc0"
starknet = "2.1.0"

[workspace.package]
version = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion examples/starknet_hello_world/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ version = "0.1.0"
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest

[dependencies]
starknet = ">=2.1.0-rc0"
starknet = "2.1.0"

[[target.starknet-contract]]
2 changes: 1 addition & 1 deletion examples/starknet_multiple_contracts/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ version = "0.1.0"
# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest

[dependencies]
starknet = ">=2.1.0-rc0"
starknet = "2.1.0"

[[target.starknet-contract]]
2 changes: 1 addition & 1 deletion website/pages/docs/cheatsheet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Add following to `Scarb.toml`:

```toml copy
[dependencies]
starknet = ">=2.1.0-rc2"
starknet = "2.1.0"

[[target.starknet-contract]]
```
Expand Down
4 changes: 2 additions & 2 deletions website/pages/docs/starknet/contract-target.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Its version is coupled to Cairo version included in Scarb.

```toml copy
[dependencies]
starknet = ">=2.1.0-rc2"
starknet = "2.1.0"
```

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

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

[[target.starknet-contract]]
Expand Down
4 changes: 2 additions & 2 deletions website/pages/docs/starknet/starknet-package.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ The version of this package is coupled to Cairo version included in Scarb.

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

```toml copy
[dependencies]
starknet = ">=2.1.0-rc2"
starknet = ">=2.1.0"
```

## Future work
Expand Down

0 comments on commit 532d8e3

Please sign in to comment.