Skip to content

Commit 8319730

Browse files
committed
Bump version to 1.3.1
1 parent 0ddec73 commit 8319730

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## 1.3.1
4+
- App API:
5+
* ``Client.standard_ratios()`` and ``Client.reel_ratios()`` is deprecated and replaced with ``MediaRatios.standard`` and ``MediaRatios.reel`` respectively.
6+
* Deprecated and experimental endpoints now warned with ``ClientDeprecationWarning`` and ``ClientExperimentalWarning``.
7+
* ``collection_feed()``, ``feed_liked()``, ``self_feed()`` have been updated to support pagination through the ``max_id`` kwarg.
8+
39
## 1.3.0
410
This update is recommended especially for those using the web api.
511

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la
4242

4343
Install with pip:
4444

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

4747
To update:
4848

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

5151
To update with latest repo code:
5252

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'1.3.0'
62+
version = u'1.3.1'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.3.0'
64+
release = u'1.3.1'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

docs/usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Install via pip
1010

1111
.. code-block:: bash
1212
13-
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0
13+
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1
1414
1515
Update your install with the latest release
1616

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

instagram_private_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
from .endpoints.upload import MediaRatios
77

88

9-
__version__ = '1.3.0'
9+
__version__ = '1.3.1'

instagram_web_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from .errors import ClientError, ClientLoginError, ClientCookieExpiredError
66

77

8-
__version__ = '1.3.0'
8+
__version__ = '1.3.1'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
has_mock = False
1111

1212
__author__ = 'ping <lastmodified@gmail.com>'
13-
__version__ = '1.3.0'
13+
__version__ = '1.3.1'
1414

1515
packages = [
1616
'instagram_private_api',

0 commit comments

Comments
 (0)