Skip to content

Commit

Permalink
0.1.18 release
Browse files Browse the repository at this point in the history
  • Loading branch information
t81lal committed May 9, 2024
1 parent 4f7bd0f commit 1998891
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ 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.18] - 2024-05-09
- Fixed version string in docs

### [0.1.17] - 2024-05-09
- Added documentation site
- Changed AST2 FileDefinition descriptor to not include file name twice
Expand Down
6 changes: 5 additions & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information

import importlib.metadata

__version__ = importlib.metadata.version("solidity-parser")

project = 'SOLP'
copyright = '2024, Zellic'
author = 'Zellic'
release = '0.1.16'
release = __version__

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def gen(self):

setup(
name='solidity-parser',
version='0.1.17',
version='0.1.18',

install_requires=[
"antlr4-python3-runtime==4.11.1",
Expand Down

0 comments on commit 1998891

Please sign in to comment.