Skip to content

Commit

Permalink
Bump version to 1.2.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed May 16, 2017
1 parent 9906c67 commit 0c11ad9
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 1.2.8
- New app client endpoint: ``api.bulk_delete_comments()``
- Prevent uploading of very small chunks when posting video
- Web API updates to use new graphql endpoints

## 1.2.7
- New endpoints: ``api.friendships_unblock()``, ``api.block_friend_reel()``, ``api.unblock_friend_reel()``, ``api.set_reel_block_status()``, ``api.blocked_reels()``, ``api.blocked_user_list()``, ``api.user_reel_settings()``, ``api.set_reel_settings()``
- Update ``api. media_seen()``
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
A Python wrapper for the Instagram private API with no 3rd party dependencies. Supports both the app and web APIs.

![Python 2.7, 3.5](https://img.shields.io/badge/Python-2.7%2C%203.5-3776ab.svg)
[![Release](https://img.shields.io/badge/release-v1.2.7-orange.svg)](https://github.com/ping/instagram_private_api/releases)
[![Release](https://img.shields.io/badge/release-v1.2.8-orange.svg)](https://github.com/ping/instagram_private_api/releases)
[![Docs](https://img.shields.io/badge/docs-readthedocs.io-ff4980.svg)](https://instagram-private-api.readthedocs.io/en/latest/)
[![Build](https://img.shields.io/travis/ping/instagram_private_api.svg)](https://travis-ci.org/ping/instagram_private_api)

Expand Down 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.7``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.2.8``

To update:

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

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

.. code-block:: bash
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.2.7 --upgrade
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.2.8 --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.7'
__version__ = '1.2.8'
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.7'
__version__ = '1.2.8'
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.7'
__version__ = '1.2.8'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 0c11ad9

Please sign in to comment.