diff --git a/pytube/__init__.py b/pytube/__init__.py index 3dce3cc4f..ec3a0747c 100644 --- a/pytube/__init__.py +++ b/pytube/__init__.py @@ -5,7 +5,7 @@ Pytube: a very serious Python library for downloading YouTube Videos. """ __title__ = 'pytube' -__version__ = '9.3.4' +__version__ = '9.3.5' __author__ = 'Nick Ficano' __license__ = 'MIT License' __copyright__ = 'Copyright 2018 Nick Ficano' diff --git a/setup.cfg b/setup.cfg index 37dc196e1..1be621b0f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,9 +1,9 @@ [bumpversion] commit = True tag = True -current_version = 9.3.4 +current_version = 9.3.5 parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? -serialize = +serialize = {major}.{minor}.{patch} [metadata] @@ -15,5 +15,6 @@ description-file = README.md [coverage:run] source = pytube -omit = +omit = pytube/compat.py + diff --git a/setup.py b/setup.py index bf0cce88c..985738b66 100644 --- a/setup.py +++ b/setup.py @@ -47,7 +47,7 @@ def run(self): setup( name='pytube', - version='9.3.4', + version='9.3.5', author='Nick Ficano', author_email='nficano@gmail.com', packages=['pytube', 'pytube.contrib'],