Skip to content

2.0.0-beta.6

Pre-release
Pre-release

Choose a tag to compare

@Janther Janther released this 06 Jan 23:04
· 46 commits to v2 since this release

New features

  • Add support for transient keyword in the solidity-parse parser by @Janther in #1079

Format changes

  • Don't re-write import * as ... from ... in the solidity-parse parser by @Janther in #1083
// Original
import * as SomeSymbol from "AnotherFile.sol";

// prettier-plugin-solidity@2.0.0-beta.5
// { parser: 'solidity-parse' }
import "AnotherFile.sol" as SomeSymbol;

// prettier-plugin-solidity@2.0.0-beta.6
// { parser: 'solidity-parse' }
import * as SomeSymbol from "AnotherFile.sol";

Breaking changes

Full Changelog: v1.4.1...v1.4.2