Skip to content

Commit

Permalink
Bump version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed Jun 3, 2017
1 parent 0ddec73 commit 8319730
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 1.3.1
- App API:
* ``Client.standard_ratios()`` and ``Client.reel_ratios()`` is deprecated and replaced with ``MediaRatios.standard`` and ``MediaRatios.reel`` respectively.
* Deprecated and experimental endpoints now warned with ``ClientDeprecationWarning`` and ``ClientExperimentalWarning``.
* ``collection_feed()``, ``feed_liked()``, ``self_feed()`` have been updated to support pagination through the ``max_id`` kwarg.

## 1.3.0
This update is recommended especially for those using the web api.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la

Install with pip:

``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1``

To update:

``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0 --upgrade``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1 --upgrade``

To update with latest repo code:

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.3.0'
version = u'1.3.1'
# The full version, including alpha/beta/rc tags.
release = u'1.3.0'
release = u'1.3.1'

# 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
Original file line number Diff line number Diff line change
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.3.0
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1
Update your install with the latest release

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

Expand Down
2 changes: 1 addition & 1 deletion instagram_private_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
from .endpoints.upload import MediaRatios


__version__ = '1.3.0'
__version__ = '1.3.1'
2 changes: 1 addition & 1 deletion instagram_web_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .errors import ClientError, ClientLoginError, ClientCookieExpiredError


__version__ = '1.3.0'
__version__ = '1.3.1'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
has_mock = False

__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '1.3.0'
__version__ = '1.3.1'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 8319730

Please sign in to comment.