Skip to content

Commit

Permalink
Bump version to 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed May 21, 2017
1 parent b9da4cf commit f321086
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 12 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Change Log

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

- Web API:
* _Important_: The new graphql endpoint appears to be replacing the old query endpoint. The graphql endpoint is comparatively more limited and some attributes may no longer be available.
* You should exercise caution when using functions relying on the old query endpoint such as ``user_info()`` and ``media_info()``since IG no longer uses them.
* __Important__: The new graphql endpoint appears to be replacing the old query endpoint. The graphql endpoint is comparatively more limited and some attributes may no longer be available.
* You should exercise caution when using functions relying on the old query endpoints such as ``user_info()`` and ``media_info()``since IG no longer uses them.
* ``user_feed()`` is now using the graphql endpoint and has compatibility-breaking changes.
- App API:
* Fix regression with photo posting and profile image update.
* __Breaking Change__: Removed ``is_video`` argument from ``reel_compatible_aspect_ratio()``

## 1.2.8
- New app client endpoint: ``api.bulk_delete_comments()``
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.2.8``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0``

To update:

``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.2.8 --upgrade``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0 --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.2.8'
version = u'1.3.0'
# The full version, including alpha/beta/rc tags.
release = u'1.2.8'
release = u'1.3.0'

# 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.2.8
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0
Update your install with the latest release

.. code-block:: bash
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.2.8 --upgrade
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.0 --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 @@ -5,4 +5,4 @@
from .errors import ClientError, ClientLoginError, ClientLoginRequiredError, ClientCookieExpiredError, ClientThrottledError


__version__ = '1.2.8'
__version__ = '1.3.0'
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.2.8'
__version__ = '1.3.0'
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.2.8'
__version__ = '1.3.0'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit f321086

Please sign in to comment.