add bumpversion script

This commit is contained in:
Alex Grintsvayg 2016-07-05 14:25:36 -04:00
parent 36a99e6ec8
commit b55752e715
2 changed files with 7 additions and 2 deletions

6
.bumpversion.cfg Normal file
View file

@ -0,0 +1,6 @@
[bumpversion]
current_version = 0.3.1
commit = True
tag = True
[bumpversion:file:lbrynet/__init__.py]

View file

@ -4,5 +4,4 @@ log = logging.getLogger(__name__)
logging.getLogger(__name__).addHandler(logging.NullHandler())
log.setLevel(logging.ERROR)
version = (0, 3, 1)
__version__ = ".".join([str(x) for x in version])
__version__ = "0.3.1"