Skip to content

Commit

Permalink
Bump version to 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
notcammy committed Dec 29, 2019
1 parent 49cfc5a commit cfd8300
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/issue_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#### Check the boxes below by filling `[ ]` with an `x` so it looks like `[x]`.
#### Use the Preview button to ensure the template is filled in correctly.
##
- [ ] I am using the latest version of PyInstaLive: 3.1.9.
- [ ] I am using the latest version of PyInstaLive: 3.2.0.
- [ ] I have installed either Python 2.7.x or 3.5+: `YOUR VERSION HERE`
- [ ] 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 Expand Up @@ -34,11 +34,11 @@ Run ```pyinstalive --info``` and paste its output below. Don't forget to omit yo
```bash
$ pyinstalive --info
---------------------------------------------------------------------------
[I] PYINSTALIVE (SCRIPT V3.1.9 - PYTHON V3.6.3) - 01-02-2019 07:00:17 PM
[I] PYINSTALIVE (SCRIPT V3.2.0 - PYTHON V3.6.3) - 01-02-2019 07:00:17 PM
---------------------------------------------------------------------------
[I] To see all the available arguments, use the -h argument.

[I] PyInstaLive version: 3.1.9
[I] PyInstaLive version: 3.2.0
[I] Python version: 3.6.3
[I] FFmpeg framework: Available
[I] Cookie files: 2 (johndoe.json matches config user)
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# PyInstaLive
![Version 3.1.9](https://img.shields.io/badge/Version-3.1.9-orange.svg)
![Version 3.2.0](https://img.shields.io/badge/Version-3.2.0-orange.svg)
![Python 2.7, 3.5](https://img.shields.io/badge/Python-2.7%2C%203.5%2B-3776ab.svg)

[![Support me!](https://www.buymeacoffee.com/assets/img/custom_images/yellow_img.png)](https://www.buymeacoffee.com/dvingerh)
Expand Down Expand Up @@ -53,29 +53,29 @@ Make sure all tools are accessible via command line (added to your PATH if on Wi

## Installation

*Tip — To install PyInstaLive with the latest commit changes, remove the version tag from the install command (e.g. **@3.1.9**).*
*Tip — To install PyInstaLive with the latest commit changes, remove the version tag from the install command (e.g. **@3.2.0**).*

#### Installing

Run the following command in your command line (might need to be run as administrator on Windows):
```bash
pip install git+https://github.com/notcammy/PyInstaLive.git@3.1.9 --process-dependency-links
pip install git+https://github.com/notcammy/PyInstaLive.git@3.2.0
```

#### Updating

To update PyInstaLive to the latest version (currently **3.1.9**) run the following command:
To update PyInstaLive to the latest version (currently **3.2.0**) run the following command:

```bash
pip install git+https://github.com/notcammy/PyInstaLive.git@3.1.9 --process-dependency-links --upgrade
pip install git+https://github.com/notcammy/PyInstaLive.git@3.2.0 --upgrade
```

#### Specific versions

If you want to install a specific version of PyInstaLive when for example the newest version contains a bug, you can specify a different version tag in the install command:

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

Use the version number you want after the **@** symbol (e.g **@2.2.0**).
Expand Down Expand Up @@ -126,7 +126,7 @@ Below is an example of PyInstaLive's output after downloading a livestream:
> pyinstalive -d "janedoe"
---------------------------------------------------------------------------
[I] PYINSTALIVE (SCRIPT V3.1.9 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM
[I] PYINSTALIVE (SCRIPT V3.2.0 - PYTHON V3.6.3) - 01-02-2019 06:56:29 PM
---------------------------------------------------------------------------
[I] Successfully logged into account: johndoe
---------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyinstalive/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


class Constants:
SCRIPT_VER = "3.1.9"
SCRIPT_VER = "3.2.0"
PYTHON_VER = sys.version.split(' ')[0]
CONFIG_TEMPLATE = """
[pyinstalive]
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__ = '3.1.9'
__version__ = '3.2.0'

_api_version = '1.6.0'
_api_extensions_version = '0.3.9'
Expand Down

0 comments on commit cfd8300

Please sign in to comment.