Skip to content

Commit

Permalink
Bump version to 1.5.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed Apr 13, 2018
1 parent cc2119b commit 8e99f22
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Expand Up @@ -10,7 +10,7 @@
---

### Before submitting an issue, make sure you have:
- [ ] Updated to the lastest version v1.5.3
- [ ] Updated to the lastest version v1.5.4
- [ ] Read the [README](https://github.com/ping/instagram_private_api/blob/master/README.md) and [docs](https://instagram-private-api.readthedocs.io/en/latest/)
- [ ] [Searched](https://github.com/ping/instagram_private_api/search?type=Issues) the bugtracker for similar issues including **closed** ones
- [ ] Reviewed the sample code in [tests](https://github.com/ping/instagram_private_api/tree/master/tests) and [examples](https://github.com/ping/instagram_private_api/tree/master/examples)
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Change Log

## 1.5.4 (pending)
## 1.5.4
- Web API:
* Fix for changes in the ``X-Instagram-GIS`` signed header requirement

Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -44,11 +44,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la

Install with pip:

``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.3``
``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.4``

To update:

``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.3 --upgrade``
``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.4 --upgrade``

To update with latest repo code:

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.5.3'
version = u'1.5.4'
# The full version, including alpha/beta/rc tags.
release = u'1.5.3'
release = u'1.5.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/usage.rst
Expand Up @@ -10,13 +10,13 @@ Install via pip

.. code-block:: bash
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.3
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.4
Update your install with the latest release

.. code-block:: bash
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.3 --upgrade
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.4 --upgrade
Force an update from source

Expand Down
2 changes: 1 addition & 1 deletion instagram_private_api/__init__.py
Expand Up @@ -12,4 +12,4 @@
from .endpoints.common import MediaTypes


__version__ = '1.5.3'
__version__ = '1.5.4'
2 changes: 1 addition & 1 deletion instagram_web_api/__init__.py
Expand Up @@ -9,4 +9,4 @@
from .common import ClientDeprecationWarning


__version__ = '1.5.3'
__version__ = '1.5.4'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -10,7 +10,7 @@
has_mock = False

__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '1.5.3'
__version__ = '1.5.4'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 8e99f22

Please sign in to comment.