Bump version: 6.4.2 → 7.0.0
Browse files- pytube/__init__.py +1 -1
- setup.cfg +2 -3
- setup.py +1 -1
pytube/__init__.py
CHANGED
@@ -9,7 +9,7 @@ follows best practice patterns.
|
|
9 |
|
10 |
"""
|
11 |
__title__ = 'pytube'
|
12 |
-
__version__ = '
|
13 |
__author__ = 'Nick Ficano'
|
14 |
__license__ = 'MIT License'
|
15 |
__copyright__ = 'Copyright 2017 Nick Ficano'
|
|
|
9 |
|
10 |
"""
|
11 |
__title__ = 'pytube'
|
12 |
+
__version__ = '7.0.0'
|
13 |
__author__ = 'Nick Ficano'
|
14 |
__license__ = 'MIT License'
|
15 |
__copyright__ = 'Copyright 2017 Nick Ficano'
|
setup.cfg
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
[bumpversion]
|
2 |
commit = True
|
3 |
tag = True
|
4 |
-
current_version =
|
5 |
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
|
6 |
serialize =
|
7 |
-
|
8 |
|
9 |
[metadata]
|
10 |
description-file = README.md
|
@@ -13,6 +13,5 @@ description-file = README.md
|
|
13 |
|
14 |
[bumpversion:file:pytube/__init__.py]
|
15 |
|
16 |
-
|
17 |
[coverage:run]
|
18 |
source = pytube
|
|
|
1 |
[bumpversion]
|
2 |
commit = True
|
3 |
tag = True
|
4 |
+
current_version = 7.0.0
|
5 |
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
|
6 |
serialize =
|
7 |
+
{major}.{minor}.{patch}
|
8 |
|
9 |
[metadata]
|
10 |
description-file = README.md
|
|
|
13 |
|
14 |
[bumpversion:file:pytube/__init__.py]
|
15 |
|
|
|
16 |
[coverage:run]
|
17 |
source = pytube
|
setup.py
CHANGED
@@ -13,7 +13,7 @@ with open('LICENSE') as readme_file:
|
|
13 |
|
14 |
setup(
|
15 |
name='pytube',
|
16 |
-
version='
|
17 |
author='Nick Ficano',
|
18 |
author_email='[email protected]',
|
19 |
packages=['pytube'],
|
|
|
13 |
|
14 |
setup(
|
15 |
name='pytube',
|
16 |
+
version='7.0.0',
|
17 |
author='Nick Ficano',
|
18 |
author_email='[email protected]',
|
19 |
packages=['pytube'],
|