Skip to content

Commit

Permalink
Prepare release 0.6.0-alpha.2
Browse files Browse the repository at this point in the history
  • Loading branch information
maciektr committed Jul 25, 2023
1 parent b4c88f1 commit 4b4d541
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 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.1"
version = "0.6.0-alpha.2"
edition = "2021"

authors = ["Software Mansion <[email protected]>"]
Expand Down
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-rc1"
starknet = ">=2.1.0-rc2"

[[target.starknet-contract]]
```
Expand Down
6 changes: 3 additions & 3 deletions website/pages/docs/guides/using-scarb-in-ci.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: software-mansion/setup-scarb@v1
with:
scarb-version: "0.5.1"
scarb-version: "0.5.2"
- run: scarb fmt --check
- run: scarb test
```
Expand All @@ -33,7 +33,7 @@ You can find an example of the Scarb setup in the following GitLab CI configurat
```yaml copy filename=".gitlab-ci.yml"
variables:
SCARB_VERSION: "0.5.1"
SCARB_VERSION: "0.5.2"

stages:
- check
Expand All @@ -58,7 +58,7 @@ version: 2.1
parameters:
scarb_version:
type: string
default: "0.5.1"
default: "0.5.2"

jobs:
check:
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-rc1"
starknet = ">=2.1.0-rc2"
```

## 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-rc1"
starknet = ">=2.1.0-rc2"
openzeppelin = { path = "../openzeppelin" }

[[target.starknet-contract]]
Expand Down
2 changes: 1 addition & 1 deletion website/pages/docs/starknet/starknet-package.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ By using the `>=` operator, you will not have to manually update this value on e

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

## Future work
Expand Down
6 changes: 3 additions & 3 deletions website/pages/download/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ Select the tab for your computer's operating system below, then follow its insta
If you want to install a specific version of Scarb (such as a preview version), run the following with the desired
version number.

```shell copy /0.5.0-alpha.1/
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh -s -- -v 0.5.0-alpha.1
```shell copy /0.6.0-alpha.2/
curl --proto '=https' --tlsv1.2 -sSf https://docs.swmansion.com/scarb/install.sh | sh -s -- -v 0.6.0-alpha.2
```

</Tab>
Expand Down Expand Up @@ -161,7 +161,7 @@ asdf install scarb latest
Install specific version:

```shell copy
asdf install scarb 0.5.0
asdf install scarb 0.5.2
```

Set a version globally (in your `~/.tool-versions` file):
Expand Down

0 comments on commit 4b4d541

Please sign in to comment.