From 47c7434b2bd4e59f4ffb06f3621dbb203e64783a Mon Sep 17 00:00:00 2001 From: Ta Quang Trung Date: Thu, 27 Apr 2023 23:10:59 +0800 Subject: [PATCH] bump version to 0.0.9 --- pyproject.toml | 2 +- solc_detect/solc_detect.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 50b61b2..ed99230 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "solc_detect" -version = "0.0.8" +version = "0.0.9" authors = [{name="Ta Quang Trung"},] description = "A tool to detect Solidity compiler version required by smart contracts" dynamic = ["dependencies"] diff --git a/solc_detect/solc_detect.py b/solc_detect/solc_detect.py index 8ed6cf1..5e5f527 100644 --- a/solc_detect/solc_detect.py +++ b/solc_detect/solc_detect.py @@ -35,7 +35,7 @@ def enumerate_and_group_solc_version_by_minor_version() -> List[List[str]]: def find_pragma_version_string( - input_file: str, quiet: bool = False + input_file: str, quiet: bool = True ) -> List[str]: """Find the pragma Solidity version strings in smart contract.""" pragma_strs = pragma_parser.parse_solidity_version(input_file)