From aae2bb599977d3168932f3de0ecb8401142ec0b2 Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Thu, 3 Nov 2022 16:19:30 +0000 Subject: [PATCH] Bump version to v0.3.8 for release --- tests/scraper_test.py | 1 - vk_url_scraper/scraper.py | 2 +- vk_url_scraper/version.py | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/scraper_test.py b/tests/scraper_test.py index 0d53799..5875c92 100644 --- a/tests/scraper_test.py +++ b/tests/scraper_test.py @@ -19,7 +19,6 @@ def test_login_custom_file(): VkScraper( os.environ["VK_USERNAME"], os.environ["VK_PASSWORD"], - os.environ.get("VK_TOKEN"), session_file=session_filename, ) assert os.path.isfile(session_filename) diff --git a/vk_url_scraper/scraper.py b/vk_url_scraper/scraper.py index 836a3ae..cccff0c 100644 --- a/vk_url_scraper/scraper.py +++ b/vk_url_scraper/scraper.py @@ -61,7 +61,7 @@ class VkScraper: token : str Access token received after authenticating, can be found in the vl_config.v2.json file session_file : str - File name where the VK session is saved so future logins are easier + File name where the VK session is saved so future logins are easier, this will not be created if token is passed captcha_handler : func Function that can receive a vk_api captcha instance and help the user solve it, default is a complete CLI handler """ diff --git a/vk_url_scraper/version.py b/vk_url_scraper/version.py index 02091a9..3bbaff7 100644 --- a/vk_url_scraper/version.py +++ b/vk_url_scraper/version.py @@ -2,7 +2,7 @@ _MAJOR = "0" _MINOR = "3" # On main and in a nightly release the patch should be one ahead of the last # released build. -_PATCH = "7" +_PATCH = "8" # This is mainly for nightly builds which have the suffix ".dev$DATE". See # https://semver.org/#is-v123-a-semantic-version for the semantics. _SUFFIX = ""