-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Added - Added spl-token integration for Solana - Solang now generates code for inline assembly, including many Yul builtins ### Changed - The documentation has been re-arranged for readability. - The solang parser can parse the same syntax as Ethereum Solidity 0.8. ### Fixed - Fixed many parser issues. Now solang-parser parses all files in the Ethereum Solidity test suite. First run `git submodule update --init --recursive` to fetch the test files, and then run the test with `cargo test --workspace`. Signed-off-by: Sean Young <[email protected]>
- Loading branch information
Showing
5 changed files
with
30 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "solang" | ||
version = "0.1.11" | ||
version = "0.1.12" | ||
authors = ["Sean Young <[email protected]>"] | ||
homepage = "https://github.com/hyperledger-labs/solang" | ||
documentation = "https://solang.readthedocs.io/" | ||
|
@@ -42,7 +42,7 @@ itertools = "0.10" | |
num-rational = "0.4" | ||
indexmap = "1.8" | ||
once_cell = "1.10" | ||
solang-parser = { path = "solang-parser", version = "0.1.13" } | ||
solang-parser = { path = "solang-parser", version = "0.1.14" } | ||
codespan-reporting = "0.11" | ||
phf = "0.10.1" | ||
rust-lapper = "1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "solang-parser" | ||
version = "0.1.13" | ||
version = "0.1.14" | ||
authors = ["Sean Young <[email protected]>"] | ||
homepage = "https://github.com/hyperledger-labs/solang" | ||
documentation = "https://solang.readthedocs.io/" | ||
|