diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 941d096c40..32da6a3a08 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,22 +1,23 @@ [bumpversion] -current_version = 4.0.0-beta.1 +current_version = 4.0.0-beta.2 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?P[^.]*)\.(?P\d+))? -serialize = - {major}.{minor}.{patch}-{stage}.{devnum} - {major}.{minor}.{patch} +serialize = + {major}.{minor}.{patch}-{stage}.{devnum} + {major}.{minor}.{patch} [bumpversion:part:stage] optional_value = stable first_value = stable -values = - alpha - beta - stable +values = + alpha + beta + stable [bumpversion:part:devnum] [bumpversion:file:setup.py] -search= version='{current_version}', -replace= version='{new_version}', +search = version='{current_version}', +replace = version='{new_version}', + diff --git a/setup.py b/setup.py index f009e1309f..1e39df8cd3 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ setup( name='web3', # *IMPORTANT*: Don't manually change the version here. Use the 'bumpversion' utility. - version='4.0.0-beta.1', + version='4.0.0-beta.2', description="""Web3.py""", long_description_markdown_filename='README.md', author='Piper Merriam',