Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for v1.0.0 release #10

Merged
merged 1 commit into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "scilla-parser"
version = "0.11.0"
version = "1.0.0"
edition = "2021"
description = "Scilla smart contract parser written in Rust"
license = "MIT"
authors = ["Saeed dadkhah", "Saeed Dadkhah <saeed@zilliqa.com>"]
authors = ["Saeed Dadkhah <[email protected]>", "Troels Rønnow <troels@zilliqa.com"]
repository = "https://github.com/Zilliqa/rs-scilla-parser/"
documentation = "https://docs.rs/scilla-parser"

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This repository contains a Rust parser for the Scilla smart contract language. [
Add the following to your Cargo.toml:
```toml
[dependencies]
scilla_parser = "0.10.0"
scilla_parser = "1.0.0"
```

Alternatively, You can run this command:
Expand Down Expand Up @@ -89,4 +89,4 @@ Here is the code to parse [SendZil.scilla](./tests/contracts/SendZil.scilla) con
let contract: Contract = contract_code.parse().unwrap();
```

For more examples, take a look at the [tests](./tests/test_parser.rs).
For more examples, take a look at the [tests](./tests/full_contract_tests.rs).