From 1998891f6182a92f922f32406c145eb55fc05be0 Mon Sep 17 00:00:00 2001 From: Bilal Tariq Date: Thu, 9 May 2024 17:08:35 +0100 Subject: [PATCH] 0.1.18 release --- CHANGELOG.MD | 3 +++ docs/source/conf.py | 6 +++++- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.MD b/CHANGELOG.MD index 13cf3da..2a31678 100644 --- a/CHANGELOG.MD +++ b/CHANGELOG.MD @@ -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 diff --git a/docs/source/conf.py b/docs/source/conf.py index 426195a..b898149 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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 diff --git a/setup.py b/setup.py index 49fd7b6..b4474d6 100644 --- a/setup.py +++ b/setup.py @@ -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",