Skip to content

Commit

Permalink
Bump version to 1.2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed May 10, 2017
1 parent f08f7df commit 13e12be
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 12 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Change Log

## 1.2.7 (pending)
## 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()``
- Minor fixes
- Fix ``ClientCompatPatch.media()`` for carousel/album posts
- Other minor fixes

## 1.2.6
- Change default user agent constants
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A Python wrapper for the Instagram private API with no 3rd party dependencies. S

![Python 2.7](https://img.shields.io/badge/Python-2.7-3776ab.svg)
![Python 3.5](https://img.shields.io/badge/Python-3.5-3776ab.svg)
[![Release](https://img.shields.io/badge/release-v1.2.6-orange.svg)](https://github.com/ping/instagram_private_api/releases)
[![Release](https://img.shields.io/badge/release-v1.2.7-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 @@ -43,11 +43,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.6``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.2.7``

To update:

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

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

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

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 13e12be

Please sign in to comment.