Skip to content

Commit

Permalink
Bump version to 2.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Cammy committed May 25, 2018
1 parent 8ea5098 commit 590a88f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/issue_template.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
### Please check the boxes below by filling [ ] with an x so it looks like [x].
###### Remove all spaces already present in the box.

- [ ] I am using the latest version of PyInstaLive: 2.5.4.
- [ ] I am using the latest version of PyInstaLive: 2.5.5.
- [ ] I have installed either Python 2.7.x or 3.5>=. (If applicable)
- [ ] I have read the [README](https://github.com/notcammy/pyinstalive/blob/master/README.md).
- [ ] I have read the [FAQ](https://github.com/notcammy/pyinstalive/blob/master/FAQ.md).
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PyInstaLive
![Version 2.5.4](https://img.shields.io/badge/Version-2.5.4-pink.svg?style=for-the-badge)
![Version 2.5.5](https://img.shields.io/badge/Version-2.5.5-pink.svg?style=for-the-badge)

This CLI 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.

Expand Down Expand Up @@ -57,15 +57,15 @@ In case it doesn't work or you just prefer building PyInstaLive from source foll

Run the following command in Command Prompt (might need to be run as administrator on Windows) or a terminal:
```bash
pip install git+https://github.com/notcammy/[email protected].4 --process-dependency-links
pip install git+https://github.com/notcammy/[email protected].5 --process-dependency-links
```

#### Updating

To update PyInstaLive to the latest version (currently **2.5.4**) run the following command:
To update PyInstaLive to the latest version (currently **2.5.5**) run the following command:

```bash
pip install git+https://github.com/notcammy/[email protected].4 --process-dependency-links --upgrade
pip install git+https://github.com/notcammy/[email protected].5 --process-dependency-links --upgrade
```

#### Specific versions
Expand Down Expand Up @@ -115,7 +115,7 @@ Below is an example of PyInstaLive's output after downloading a livestream:

```
----------------------------------------------------------------------
PYINSTALIVE (SCRIPT V2.5.4 - PYTHON V3.6.3) - 06:45:30 PM
PYINSTALIVE (SCRIPT V2.5.5 - PYTHON V3.6.3) - 06:45:30 PM
----------------------------------------------------------------------
[I] Using cached login cookie for "johndoe".
[I] Login cookie expiry date: 2018-01-31 at 10:30:00 PM
Expand Down
2 changes: 1 addition & 1 deletion pyinstalive/initialize.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from .logger import supports_color
from .settings import settings

script_version = "2.5.4"
script_version = "2.5.5"
python_version = sys.version.split(' ')[0]
bool_values = {'True', 'False'}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = 'notcammy'
__email__ = '[email protected]'
__version__ = '2.5.4'
__version__ = '2.5.5'

_api_version = '1.5.6'
_api_extensions_version = '0.3.8'
Expand Down

0 comments on commit 590a88f

Please sign in to comment.