Skip to content

Commit bd387a2

Browse files
author
Cammy
committed
Bump version to 3.1.6
1 parent 623dc17 commit bd387a2

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/issue_template.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#### Check the boxes below by filling `[ ]` with an `x` so it looks like `[x]`.
33
#### Use the Preview button to ensure the template is filled in correctly.
44
##
5-
- [ ] I am using the latest version of PyInstaLive: 3.1.5.
5+
- [ ] I am using the latest version of PyInstaLive: 3.1.6.
66
- [ ] I have installed either Python 2.7.x or 3.5+: `YOUR VERSION HERE`
77
- [ ] I have read the [README](https://github.com/notcammy/pyinstalive/blob/master/README.md).
88
- [ ] I have read the [FAQ](https://github.com/notcammy/pyinstalive/blob/master/FAQ.md).
@@ -27,11 +27,11 @@ Run ```pyinstalive --info``` and paste its output below. Don't forget to omit yo
2727
```bash
2828
$ pyinstalive --info
2929
---------------------------------------------------------------------------
30-
[I] PYINSTALIVE (SCRIPT V3.1.5 - PYTHON V3.6.3) - 01-02-2019 07:00:17 PM
30+
[I] PYINSTALIVE (SCRIPT V3.1.6 - PYTHON V3.6.3) - 01-02-2019 07:00:17 PM
3131
---------------------------------------------------------------------------
3232
[I] To see all the available arguments, use the -h argument.
3333

34-
[I] PyInstaLive version: 3.1.5
34+
[I] PyInstaLive version: 3.1.6
3535
[I] Python version: 3.6.3
3636
[I] FFmpeg framework: Available
3737
[I] Cookie files: 2 (johndoe.json matches config user)

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# PyInstaLive
2-
![Version 3.1.5](https://img.shields.io/badge/Version-3.1.5-orange.svg)
2+
![Version 3.1.6](https://img.shields.io/badge/Version-3.1.6-orange.svg)
33
![Python 2.7, 3.5](https://img.shields.io/badge/Python-2.7%2C%203.5%2B-3776ab.svg)
44

55
This Python script enables you to download any ongoing Instagram livestreams as well as any available replays. It is based on [another script](https://github.com/taengstagram/instagram-livestream-downloader) that has now been discontinued.
@@ -50,21 +50,21 @@ Make sure all tools are accessible via command line (added to your PATH if on Wi
5050

5151
## Installation
5252

53-
*Tip — To install PyInstaLive with the latest commit changes, remove the version tag from the install command (e.g. **@3.1.5**).*
53+
*Tip — To install PyInstaLive with the latest commit changes, remove the version tag from the install command (e.g. **@3.1.6**).*
5454

5555
#### Installing
5656

5757
Run the following command in your command line (might need to be run as administrator on Windows):
5858
```bash
59-
pip install git+https://github.com/notcammy/[email protected].5 --process-dependency-links
59+
pip install git+https://github.com/notcammy/[email protected].6 --process-dependency-links
6060
```
6161

6262
#### Updating
6363

64-
To update PyInstaLive to the latest version (currently **3.1.5**) run the following command:
64+
To update PyInstaLive to the latest version (currently **3.1.6**) run the following command:
6565

6666
```bash
67-
pip install git+https://github.com/notcammy/[email protected].5 --process-dependency-links --upgrade
67+
pip install git+https://github.com/notcammy/[email protected].6 --process-dependency-links --upgrade
6868
```
6969

7070
#### Specific versions
@@ -123,7 +123,7 @@ Below is an example of PyInstaLive's output after downloading a livestream:
123123
> pyinstalive -d "janedoe"
124124
125125
---------------------------------------------------------------------------
126-
[I] PYINSTALIVE (SCRIPT V3.1.5 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM
126+
[I] PYINSTALIVE (SCRIPT V3.1.6 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM
127127
---------------------------------------------------------------------------
128128
[I] Successfully logged into account: johndoe
129129
---------------------------------------------------------------------------

pyinstalive/constants.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class Constants:
5-
SCRIPT_VER = "3.1.5"
5+
SCRIPT_VER = "3.1.6"
66
PYTHON_VER = sys.version.split(' ')[0]
77
CONFIG_TEMPLATE = """
88
[pyinstalive]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = 'notcammy'
44
__email__ = '[email protected]'
5-
__version__ = '3.1.5'
5+
__version__ = '3.1.6'
66

77
_api_version = '1.5.7'
88
_api_extensions_version = '0.3.8'

0 commit comments

Comments
 (0)