Releases: Consensys/solc-typed-ast
Releases · Consensys/solc-typed-ast
v8.0.0
Features
- Support for Solidity 0.8.11 (#86)
- Support for native compilers (#87)
- Docker image with downloaded prerequisites (#89)
Notes
Beware that this release is making significant changes in the package API:
compile*()
functions are now async;compile*()
functions have changes in their signatures.
Most of these changes are result of supporting native compiler downloads on-demand. Consider carefully upgrading.
Thanks for paying attention.
v7.2.0
v7.1.0
v7.0.2
v7.0.1
v7.0.0
v6.1.4
v6.1.3
This patch adds the new optional compilationOutput
argument to all compile*
API endpoints, allowing users to select which outputs they want from the underlying solidity compiler. For reference on options please see the possible values in outputSelection
in https://docs.soliditylang.org/en/v0.8.7/using-the-compiler.html#input-description
v6.1.2
This is a small patch that adds:
- A new
--compiler-settings
command line arg tosol-ast-compile
that allows passing additional compiler setting to solc directly (#66). - A new optional argument
compilerSettigns
for allcompile*
API entry points, that allows passing additional compiler settings programatically (#66). - Migration of some internal types from Scribble to
solc-typed-ast
(#63).