-
Notifications
You must be signed in to change notification settings - Fork 215
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Imports, base contracts, abstract, interface, and libraries
Added - `import` directives are supported - New `--importpath` command line argument to specify directories to search for imports - Contracts can have base contracts - Contracts can be abstract - Interfaces are supported - Libraries are supported - The `using` library `for` type syntax is supported Changed - Solang now uses llvm 10.0 rather than llvm 8.0 - In line with Solidity 0.7.0, constructors no longer need a visibility argument Signed-off-by: Sean Young <[email protected]>
- Loading branch information
Showing
5 changed files
with
8 additions
and
5 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.2" | ||
version = "0.1.3" | ||
authors = ["Sean Young <[email protected]>"] | ||
homepage = "https://github.com/hyperledger-labs/solang" | ||
documentation = "https://solang.readthedocs.io/" | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
author = 'Sean Young <[email protected]>' | ||
|
||
# The full version, including alpha/beta/rc tags | ||
release = '0.1.2' | ||
release = '0.1.3' | ||
|
||
|
||
# -- General configuration --------------------------------------------------- | ||
|
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