File tree Expand file tree Collapse file tree 5 files changed +16
-7
lines changed
Expand file tree Collapse file tree 5 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,17 @@ This changelog format is based on [Keep a Changelog](https://keepachangelog.com/
66and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
77
88## [ Unreleased] ( https://github.com/eth-brownie/brownie )
9+
10+ ## [ 1.20.7] ( https://github.com/eth-brownie/brownie/tree/v1.20.7 ) - 2025-01-07
911### Added
10- - ` py.typed ` marker
12+ - Support for vyper ` 0.4.0 ` ([ #1793 ] ( https://github.com/eth-brownie/brownie/pull/1793 ) )
13+ - ` py.typed ` marker ([ #1794 ] ( https://github.com/eth-brownie/brownie/pull/1794 ) )
14+
15+ ### Fixed
16+ - Improvements to caching ([ #1786 ] ( https://github.com/eth-brownie/brownie/pull/1786 ) )
17+
18+ ### Removed
19+ - ` tqdm ` progress bars during compiler installation ([ #1785 ] ( https://github.com/eth-brownie/brownie/pull/1785 ) )
1120
1221## [ 1.20.6] ( https://github.com/eth-brownie/brownie/tree/v1.20.6 ) - 2024-06-22
1322### Added
Original file line number Diff line number Diff line change 1919from brownie ._expansion import expand_posix_vars
2020from brownie ._singleton import _Singleton
2121
22- __version__ = "1.20.6 "
22+ __version__ = "1.20.7 "
2323
2424BROWNIE_FOLDER = Path (__file__ ).parent
2525DATA_FOLDER = Path .home ().joinpath (".brownie" )
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def get_abi(contract_source: str, name: str) -> Dict:
7777 raise exc .with_traceback (None )
7878 else :
7979 try :
80- compiled = vvm .compile_standard (input_json , vyper_version = _active_version )
80+ compiled = vvm .compile_standard (input_json , vyper_version = str ( _active_version ) )
8181 except vvm .exceptions .VyperError as exc :
8282 raise CompilerError (exc , "vyper" )
8383
@@ -103,7 +103,7 @@ def _get_vyper_version_list() -> Tuple[List, List]:
103103def install_vyper (* versions : str ) -> None :
104104 """Installs vyper versions."""
105105 for version in versions :
106- vvm .install_vyper (version , show_progress = False )
106+ vvm .install_vyper (str ( version ) , show_progress = False )
107107
108108
109109def find_vyper_versions (
@@ -150,7 +150,7 @@ def find_vyper_versions(
150150 )
151151
152152 if not version or (install_latest and latest > version ):
153- to_install .add (latest )
153+ to_install .add (str ( latest ) )
154154 elif latest and latest > version :
155155 new_versions .add (str (version ))
156156
Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 1.20.6
2+ current_version = 1.20.7
33
44[bumpversion:file:setup.py]
55
Original file line number Diff line number Diff line change 2424setup (
2525 name = "eth-brownie" ,
2626 packages = find_packages (),
27- version = "1.20.6 " , # don't change this manually, use bumpversion instead
27+ version = "1.20.7 " , # don't change this manually, use bumpversion instead
2828 license = "MIT" ,
2929 description = "A Python framework for Ethereum smart contract deployment, testing and interaction." , # noqa: E501
3030 long_description = long_description ,
You can’t perform that action at this time.
0 commit comments