File tree 2 files changed +15
-2
lines changed
2 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,24 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
6
6
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
7
7
8
+ ### [ 0.1.22] - 2024-08-29
9
+ - Fixed issues with external function call options(gas/value) being confused with name function arguments
10
+ - Renamed ` solnodes.CallFunction.modifiers ` to ` special_call_options `
11
+ - Renamed ` solnodes2.Call ` and ` solnodes2.CreateAndDeployContract ` ` named_args ` to ` call_options `
12
+ - Fixed error messaging and ignore line numbers when parsing remapping files
13
+ - Fixed naming issue where ` location ` was being used instead of ` id_location ` for AST Node source locations
14
+ - Allowed AST2 partial function building to expand multiple calls(used for ` call ` on ` address payable ` )
15
+ - Added ` selector ` support for Events and Errors
16
+ - Fixed incompatability issue with partial function application for old style gas/value and using functions on function base types
17
+ - Fixed issue with BuiltInCall ` name ` being a set instead of string
18
+ - Fixed other misc issues in AST2Builder
19
+ - Fixed function call resolution for calls with named args
20
+ - Added testcases
21
+
8
22
### [ 0.1.21] - 2024-08-01
9
23
- Fixed issue where ` using * ` statements with unimported types were causing crashes
10
24
- Changed types.type_key to support UserTypes with a callback
11
25
- Added symtab.TypeNotFound error
12
- -
13
26
14
27
### [ 0.1.20] - 2024-06-13
15
28
- Fixed issue with AST2 TypeHelper with function types of overriden functions
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def gen(self):
26
26
27
27
setup (
28
28
name = 'solidity-parser' ,
29
- version = '0.1.21 ' ,
29
+ version = '0.1.22 ' ,
30
30
31
31
install_requires = [
32
32
"antlr4-python3-runtime==4.11.1" ,
You can’t perform that action at this time.
0 commit comments