diff --git a/CHANGELOG.md b/CHANGELOG.md index 55df72a9bd..c5b558af38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to [Solang](https://github.com/hyperledger-labs/solang/) will be documented here. -## [Unreleased] +## [0.1.10] ### Added - On Solana, the accounts that were passed into the transactions are listed in @@ -10,6 +10,8 @@ will be documented here. - A new common subexpression elimination pass was added, thanks to [LucasSte](https://github.com/hyperledger-labs/solang/pull/550) - A graphviz dot file can be generated from the ast, using `--emit ast-dot` +- Many improvements to the solidity parser, and the parser has been spun out + in it's own create `solang-parser`. ### Changed - Solang now uses LLVM 13.0, based on the [Solana LLVM tree](https://github.com/solana-labs/llvm-project/) diff --git a/Cargo.toml b/Cargo.toml index accfcca960..36834b331d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "solang" -version = "0.1.9" +version = "0.1.10" authors = ["Sean Young "] homepage = "https://github.com/hyperledger-labs/solang" documentation = "https://solang.readthedocs.io/" diff --git a/docs/installing.rst b/docs/installing.rst index 6a4c22aadb..6e80c988a6 100644 --- a/docs/installing.rst +++ b/docs/installing.rst @@ -6,27 +6,23 @@ The Solang compiler is a single binary. It can be installed in different ways. Download release binaries ------------------------- -For Linux x86-64, there is a binary available in the github releases: +There are binaries available on github releases: -``_ +- `Linux x86-64 `_ +- `Linux arm64 `_ +- `Windows x64 `_ +- `MacOS arm `_ +- `MacOS intel `_ -For Windows x64, there is a binary available: - -``_ - -For MacOS, there is an arm and intel binary available. -Remember to remove the quarantine attribute using ``xattr -d com.apple.quarantine solang-mac-arm`` in the terminal. - -``_ - -``_ +On MacOS, remember to remove the quarantine attribute using ``xattr -d com.apple.quarantine solang-mac-arm`` +in the terminal. Using ghcr.io/hyperledger-labs/solang containers ------------------------------------------------ New images are automatically made available on `solang containers `_. -There is a release `v0.1.9` tag and a `latest` tag: +There is a release `v0.1.10` tag and a `latest` tag: .. code-block:: bash @@ -68,7 +64,7 @@ These patches make it possible to generate code for Solana, and fixes some concurrency issues in the lld linker. You can either download the pre-built libraries from -`github `_ +`github `_ or build your own from source. After that, you need to add the `bin` directory to your path, so that the build system of Solang can find the correct version of llvm to use. diff --git a/solang-parser/Cargo.toml b/solang-parser/Cargo.toml index 7fdfd37a9c..db930149ca 100644 --- a/solang-parser/Cargo.toml +++ b/solang-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "solang-parser" -version = "0.1.2" +version = "0.1.10" authors = ["Sean Young "] homepage = "https://github.com/hyperledger-labs/solang" documentation = "https://solang.readthedocs.io/"