Skip to content

Commit 803df33

Browse files
committed
Update version to 9.3.1
- Update API version to 5.73 - Add stories permission to default scope - Update copyrights
1 parent ea556a5 commit 803df33

File tree

16 files changed

+21
-21
lines changed

16 files changed

+21
-21
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2011-2017 python273
1+
Copyright 2011-2018 python273
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

doc/VkApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
- captcha_handler (default: `None`) — Функция для обработки капчи
1111
- config (default: `<class 'jconfig.jconfig.Config'>`) — Класс для сохранения настроек
1212
- config_filename (default: `'vk_config.v2.json'`) — Расположение config файла
13-
- api_version (default: `'5.63'`; type: `str`) — Версия API
14-
- app_id (default: `2895443`; type: `int`) — Standalone-приложение
15-
- scope (default: `33554431`; types: `int`, `str`) — Запрашиваемые права (можно передать строкой или числом)
13+
- api_version (default: `'5.73'`; type: `str`) — Версия API
14+
- app_id (default: `6222115`; type: `int`) — Standalone-приложение
15+
- scope (default: `140492255`; types: `int`, `str`) — Запрашиваемые права (можно передать строкой или числом)
1616
- client_secret (default: `None`) — Защищенный ключ приложения для серверной авторизации ([https://vk.com/dev/auth_server](https://vk.com/dev/auth_server))
1717

1818
### api_login

jconfig/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@contact: https://vk.com/python273
55
@license Apache License, Version 2.0, see LICENSE file
66
7-
Copyright (C) 2017
7+
Copyright (C) 2018
88
"""
99

1010
__author__ = 'Kirill Python'

jconfig/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@contact: https://vk.com/python273
55
@license Apache License, Version 2.0, see LICENSE file
66
7-
Copyright (C) 2017
7+
Copyright (C) 2018
88
"""
99

1010

jconfig/jconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@contact: https://vk.com/python273
55
@license Apache License, Version 2.0, see LICENSE file
66
7-
Copyright (C) 2017
7+
Copyright (C) 2018
88
"""
99

1010
import json

jconfig/memory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@contact: https://vk.com/python273
55
@license Apache License, Version 2.0, see LICENSE file
66
7-
Copyright (C) 2017
7+
Copyright (C) 2018
88
"""
99

1010
from .base import BaseConfig

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
@contact: https://vk.com/python273
88
@license Apache License, Version 2.0, see LICENSE file
99
10-
Copyright (C) 2017
10+
Copyright (C) 2018
1111
"""
1212

1313

1414
setup(
1515
name='vk_api',
16-
version='9.3',
16+
version='9.3.1',
1717
author='python273',
1818
author_email='[email protected]',
1919
url='https://github.com/python273/vk_api',

vk_api/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
@contact: https://vk.com/python273
1111
@license Apache License, Version 2.0, see LICENSE file
1212
13-
Copyright (C) 2017
13+
Copyright (C) 2018
1414
"""
1515

1616
__author__ = 'Kirill Python'
17-
__version__ = '9.3'
17+
__version__ = '9.3.1'
1818
__email__ = '[email protected]'
1919
__contact__ = 'https://vk.com/python273'

vk_api/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@contact: https://vk.com/python273
55
@license Apache License, Version 2.0, see LICENSE file
66
7-
Copyright (C) 2017
7+
Copyright (C) 2018
88
"""
99

1010

vk_api/execute.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
@contact: https://vk.com/python273
55
@license Apache License, Version 2.0, see LICENSE file
66
7-
Copyright (C) 2017
7+
Copyright (C) 2018
88
"""
99

1010
from .utils import sjson_dumps

0 commit comments

Comments
 (0)