diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 61b31b5..13cf3da 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +### [0.1.17] - 2024-05-09 + - Added documentation site + - Changed AST2 FileDefinition descriptor to not include file name twice + - Added AST2 ContractDefinition.state_var() + - Changed VFS process_cli_input_file to return LoadedSource result + - Added _do_read_path to VFS + ### [0.1.16] - 2024-04-16 - Created nodebase.py for all Node base type for AST1 and AST2 nodes - NodeDataclass/NodeList parenting mechanism added to AST1 diff --git a/docrequirements.txt b/docrequirements.txt new file mode 100644 index 0000000..20d5791 --- /dev/null +++ b/docrequirements.txt @@ -0,0 +1,4 @@ +sphinx==7.3.7 +furo==2024.1.29 +sphinx-autoapi==3.0.0 +sphinx_autodoc_typehints==2.1.0 \ No newline at end of file diff --git a/setup.py b/setup.py index 0992dcc..49fd7b6 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ def gen(self): setup( name='solidity-parser', - version='0.1.16', + version='0.1.17', install_requires=[ "antlr4-python3-runtime==4.11.1",