diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 9a1075d5..6fe7f0c0 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -11,7 +11,7 @@ --- ### Before submitting an issue, make sure you have: -- [ ] Updated to the lastest version v1.5.5 +- [ ] Updated to the lastest version v1.5.6 - [ ] 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) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b0e6ee9..09620a13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 1.5.6 +- Web API: + * Add ``media_likers()`` + * Few fixes +- App API: + * Few improvements + ## 1.5.5 - Web API: * Fix for changes in the ``X-Instagram-GIS`` signed header requirement diff --git a/README.md b/README.md index d13a47cf..c5bb17ab 100644 --- a/README.md +++ b/README.md @@ -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.5`` +``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.6`` To update: -``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.5 --upgrade`` +``pip install git+https://git@github.com/ping/instagram_private_api.git@1.5.6 --upgrade`` To update with latest repo code: diff --git a/docs/conf.py b/docs/conf.py index 99d7f097..af95e3c8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = u'1.5.5' +version = u'1.5.6' # The full version, including alpha/beta/rc tags. -release = u'1.5.5' +release = u'1.5.6' # 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 84380260..6aabf787 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.5.5 + $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.6 Update your install with the latest release .. code-block:: bash - $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.5 --upgrade + $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.5.6 --upgrade Force an update from source diff --git a/instagram_private_api/__init__.py b/instagram_private_api/__init__.py index 1c094e86..3c14bb1a 100644 --- a/instagram_private_api/__init__.py +++ b/instagram_private_api/__init__.py @@ -12,4 +12,4 @@ from .endpoints.common import MediaTypes -__version__ = '1.5.5' +__version__ = '1.5.6' diff --git a/instagram_web_api/__init__.py b/instagram_web_api/__init__.py index 88bd5892..5660f394 100644 --- a/instagram_web_api/__init__.py +++ b/instagram_web_api/__init__.py @@ -9,4 +9,4 @@ from .common import ClientDeprecationWarning -__version__ = '1.5.5' +__version__ = '1.5.6' diff --git a/setup.py b/setup.py index 814a7c3a..457aeea0 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ has_mock = False __author__ = 'ping ' -__version__ = '1.5.5' +__version__ = '1.5.6' packages = [ 'instagram_private_api',