Skip to content

Commit 6eaecce

Browse files
committed
bump version to 0.1.23
1 parent a358546 commit 6eaecce

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

CHANGELOG.MD

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,22 @@ 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.23] - 2025-05-19
9+
- Added `FunctionParameter` for input parameters of `FunctionType`s (required for named argument support)
10+
- Changed `FunctionType` field `inputs` to `input_params`
11+
- Added `block.blobbasefee` builtin variable
12+
- Added `blobhash` builtin function
13+
- Added new `require` function that takes an `ErrorType`
14+
- Added `Type.is_user_error`
15+
- Added `ErrorType` to make allow class error objects
16+
- Added `UserDefinedErrorType` for solidity `error` 'function' types
17+
- Added `CreateError` AST2 node for first class error initialisation
18+
- Changed AST2 `RevertWithError` to take a `CreateError` object instead of a type and list of args
19+
- Changed AST1 `EventParameter` and `ErrorParameter` to use `var_name` instead of `name` to be consistent with Parameter
20+
- Changed AST1 `Parameter` to use `soltypes.Type` for `var_type` instead of `Ident`
21+
- Fixed hashing issue with `NodeList`
22+
- Fixed some issues with function type widening with
23+
-
824
### [0.1.22] - 2024-08-29
925
- Fixed issues with external function call options(gas/value) being confused with name function arguments
1026
- Renamed `solnodes.CallFunction.modifiers` to `special_call_options`

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.22',
29+
version='0.1.23',
3030

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

0 commit comments

Comments
 (0)