Skip to content

Commit defe031

Browse files
committed
Version update 5.0.0
1 parent 5d5abb7 commit defe031

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from distutils.core import setup
1313
setup(
1414
name='vk_api',
15-
version='4.7.5',
15+
version='5.0.0',
1616
author='Kirill Python',
1717
author_email='siberianpython@gmail.com',
1818
url='https://github.com/python273/vk_api',

vk_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"""
1010

1111
__author__ = 'Kirill Python'
12-
__version__ = '4.7.5'
12+
__version__ = '5.0.0'
1313
__email__ = 'siberianpython@gmail.com'
1414
__contact__ = 'https://vk.com/python273'
1515

vk_api/vk_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ def __init__(self, login=None, password=None, number=None, token=None,
6767
self.http = requests.Session()
6868
self.http.proxies = proxies # Ставим прокси
6969
self.http.headers = { # Притворимся браузером
70-
'User-agent': 'Mozilla/5.0 (Windows NT 6.2; WOW64; rv:30.0) '
71-
'Gecko/20100101 Firefox/30.0'
70+
'User-agent': 'Mozilla/5.0 (Windows NT 6.1; rv:31.0)'
71+
' Gecko/20100101 Firefox/31.0'
7272
}
7373
self.http.verify = False
7474

0 commit comments

Comments
 (0)