Skip to content

Commit 6b08545

Browse files
committed
0.1.22 release
1 parent 32e56da commit 6b08545

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.MD

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

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+
822
### [0.1.21] - 2024-08-01
923
- Fixed issue where `using *` statements with unimported types were causing crashes
1024
- Changed types.type_key to support UserTypes with a callback
1125
- Added symtab.TypeNotFound error
12-
-
1326

1427
### [0.1.20] - 2024-06-13
1528
- Fixed issue with AST2 TypeHelper with function types of overriden functions

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def gen(self):
2626

2727
setup(
2828
name='solidity-parser',
29-
version='0.1.21',
29+
version='0.1.22',
3030

3131
install_requires=[
3232
"antlr4-python3-runtime==4.11.1",

0 commit comments

Comments
 (0)