Skip to content

Commit

Permalink
Bump version to 0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
taengstagram committed May 23, 2017
1 parent 3aa7433 commit 9852456
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
Expand Up @@ -13,7 +13,7 @@
- [ ] Read the [README](https://github.com/taengstagram/instagram-livestream-downloader/blob/master/README.md)
- [ ] Read the [FAQ](https://github.com/taengstagram/instagram-livestream-downloader/blob/master/FAQ.md)
- [ ] [Searched](https://github.com/taengstagram/instagram-livestream-downloader/search?type=Issues) the bugtracker for similar issues including **closed** ones
- [ ] Make sure you have the latest version: v0.3.2
- [ ] Make sure you have the latest version: v0.3.3

### Purpose of your issue:
- [ ] Bug report (problems/errors)
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Instagram Live Stream Downloader [![Release](https://img.shields.io/badge/latest_release-v0.3.2-ff4980.svg)](https://github.com/taengstagram/instagram-livestream-downloader/releases)
# Instagram Live Stream Downloader [![Release](https://img.shields.io/badge/latest_release-v0.3.3-ff4980.svg)](https://github.com/taengstagram/instagram-livestream-downloader/releases)

``livestream_dl`` is a Python console script that downloads an Instagram Live stream. It only downloads a stream that is *currently* ongoing, and cannot capture any part of a stream that has already passed.

Expand All @@ -13,7 +13,7 @@ Make sure you have the [prerequisites](PREREQUISITES.md) installed.
In the Command Prompt / Terminal:

```bash
pip install git+https://git@github.com/taengstagram/instagram-livestream-downloader.git@0.3.2 --process-dependency-links
pip install git+https://git@github.com/taengstagram/instagram-livestream-downloader.git@0.3.3 --process-dependency-links
```

## Usage
Expand All @@ -31,7 +31,7 @@ Where:
Enter the account password when prompted. As the script runs, you should see something similar to:

```
INSTAGRAM LIVESTREAM DOWNLOADER (v0.3.2)
INSTAGRAM LIVESTREAM DOWNLOADER (v0.3.3)
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Type in the password for jane and press "Enter"
(Your password will not show on screen):
Expand All @@ -53,10 +53,10 @@ You can refer to the [Advance Usage doc](ADVANCE_USAGE.md) for more options.

## Updating

The latest version is __v0.3.2__. To update your copy:
The latest version is __v0.3.3__. To update your copy:

```bash
pip install git+https://git@github.com/taengstagram/instagram-livestream-downloader.git@0.3.2 --process-dependency-links --upgrade
pip install git+https://git@github.com/taengstagram/instagram-livestream-downloader.git@0.3.3 --process-dependency-links --upgrade
```

You can check if a new version is available with:
Expand Down
2 changes: 1 addition & 1 deletion livestream_dl/download.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
)


__version__ = '0.3.2'
__version__ = '0.3.3'

USERNAME_ENV_KEY = 'IG_LOGIN_USERNAME'
PASSWORD_ENV_KEY = 'IG_LOGIN_PASSWORD'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

__author__ = 'taengstagram'
__email__ = 'taengstagram@gmail.com'
__version__ = '0.3.2'
__version__ = '0.3.3'

_api_version = '1.3.0'
_api_extensions_version = '0.3.0'
Expand Down

0 comments on commit 9852456

Please sign in to comment.