diff --git a/CHANGELOG.md b/CHANGELOG.md index a7aa2e0f..901936c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index b1500087..f8533ed7 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/docs/conf.py b/docs/conf.py index 4da84074..037a9124 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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. diff --git a/docs/usage.rst b/docs/usage.rst index 815768ab..21575add 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -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 diff --git a/instagram_private_api/__init__.py b/instagram_private_api/__init__.py index 6144ff12..0c26f113 100644 --- a/instagram_private_api/__init__.py +++ b/instagram_private_api/__init__.py @@ -6,4 +6,4 @@ from .endpoints.upload import MediaRatios -__version__ = '1.3.0' +__version__ = '1.3.1' diff --git a/instagram_web_api/__init__.py b/instagram_web_api/__init__.py index 2ef57e16..fb4b827b 100644 --- a/instagram_web_api/__init__.py +++ b/instagram_web_api/__init__.py @@ -5,4 +5,4 @@ from .errors import ClientError, ClientLoginError, ClientCookieExpiredError -__version__ = '1.3.0' +__version__ = '1.3.1' diff --git a/setup.py b/setup.py index 3806673c..e7b60286 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ has_mock = False __author__ = 'ping ' -__version__ = '1.3.0' +__version__ = '1.3.1' packages = [ 'instagram_private_api',