-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [0.1.11] ### Added - Added support for Solidity user types - Support `using` syntax on file scope - Support binding functions with `using` - Implemented parsing and semantic analysis of yul (code generation is to follow) - The language server uses the `--import` and `--importmap` arguments - On Solana, it is possible to set the accounts during CPI using the `accounts:` call argument. ### Fixed - Fixed associativity of the power operator - A huge amount of fixes improving compatibility with solc Signed-off-by: Sean Young <[email protected]>
- Loading branch information
Showing
4 changed files
with
30 additions
and
14 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.10" | ||
version = "0.1.11" | ||
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.12" } | ||
solang-parser = { path = "solang-parser", version = "0.1.13" } | ||
codespan-reporting = "0.11" | ||
phf = "0.10.1" | ||
|
||
|
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.12" | ||
version = "0.1.13" | ||
authors = ["Sean Young <[email protected]>"] | ||
homepage = "https://github.com/hyperledger-labs/solang" | ||
documentation = "https://solang.readthedocs.io/" | ||
|