diff --git a/deploying.md b/deploying.md index 1311300..159fcbb 100644 --- a/deploying.md +++ b/deploying.md @@ -1,3 +1,5 @@ +# bump2version patch +# (or, bump2version minor) # rm -r vvm.egg-info/ dist/ # python -m build # twine upload dist/* diff --git a/setup.cfg b/setup.cfg index 3742e76..84caef8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.3.0 [bumpversion:file:setup.py] @@ -23,4 +23,3 @@ use_parentheses = True [tool:pytest] addopts = --cov=vvm --cov-branch --cov-report xml - diff --git a/setup.py b/setup.py index fca6a1d..07abce8 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="vvm", - version="0.2.1", # don't change this manually, use bumpversion instead + version="0.3.0", # don't change this manually, use bumpversion instead description="Vyper version management tool", long_description=long_description, long_description_content_type="text/markdown",