From 539ec3c988c7175bbed42e337c50cd069b058584 Mon Sep 17 00:00:00 2001 From: dvingerh Date: Tue, 28 Jun 2022 23:06:57 +0200 Subject: [PATCH] Bump version to 4.0.2 --- README.md | 6 +++--- pyinstalive/constants.py | 2 +- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 79baf1b..a2509a7 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ Active development for this script has ended. Issues will no longer be looked in # PyInstaLive -![Version 4.0.1](https://img.shields.io/badge/Version-4.0.1-orange.svg) +![Version 4.0.2](https://img.shields.io/badge/Version-4.0.2-orange.svg) ![Python 3.6+](https://img.shields.io/badge/Python-3.6%2B-3776ab.svg) @@ -45,7 +45,7 @@ Make sure all tools are accessible via command line (added to your PATH if on Wi Run the following command in your command line (might need to be run as administrator on Windows): ```bash -pip install git+https://github.com/dvingerh/PyInstaLive.git@4.0.1 +pip install git+https://github.com/dvingerh/PyInstaLive.git@4.0.2 ``` ## Usage @@ -82,7 +82,7 @@ Below is an example of PyInstaLive's output after downloading a livestream: > pyinstalive -d "janedoe" --------------------------------------------------------------------------- -[I] PYINSTALIVE (SCRIPT V4.0.1 - PYTHON V3.8.10) - 06-10-2022 05:02:02 PM +[I] PYINSTALIVE (SCRIPT V4.0.2 - PYTHON V3.8.10) - 06-10-2022 05:02:02 PM --------------------------------------------------------------------------- An existing login session file was found: johndoe.dat Checking the validity of the saved login session. diff --git a/pyinstalive/constants.py b/pyinstalive/constants.py index cdad099..1b7162a 100644 --- a/pyinstalive/constants.py +++ b/pyinstalive/constants.py @@ -2,7 +2,7 @@ class Constants: - SCRIPT_VERSION = "4.0.1" + SCRIPT_VERSION = "4.0.2" PYTHON_VERSION = sys.version.split(" ")[0] CONFIG_TEMPLATE = """ [pyinstalive] diff --git a/setup.py b/setup.py index 6a3a1a2..f5b0ab5 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ __author__ = 'dvingerh' __email__ = 'dirk.ving@gmail.com' -__version__ = '4.0.1' +__version__ = '4.0.2' long_description = 'This Python script enables you to download ongoing Instagram livestreams as a video file.'