Skip to content

Commit

Permalink
Bump version to 1.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed Mar 20, 2017
1 parent 2191381 commit 7593c88
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -5,7 +5,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-green.svg)
![Python 3.5](https://img.shields.io/badge/Python-3.5-green.svg)
![License: MIT](https://img.shields.io/badge/license-MIT_License-blue.svg)
[![Release](https://img.shields.io/badge/release-v1.1.4-orange.svg)](https://github.com/ping/instagram_private_api/releases)
[![Release](https://img.shields.io/badge/release-v1.1.5-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 @@ -44,11 +44,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la

No 3rd-party libraries required. Just drop one of or both folders [``instagram_private_api/``](instagram_private_api/) and [``instagram_web_api/``](instagram_web_api/) into your project path or pip install with:

``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.4``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.5``

To update:

``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.4 --upgrade``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.5 --upgrade``

To update with latest repo code:

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.1.4'
version = u'1.1.5'
# The full version, including alpha/beta/rc tags.
release = u'1.1.4'
release = u'1.1.5'

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

.. code-block:: bash
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.4 --upgrade
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.5 --upgrade
Force an update from source

Expand Down
2 changes: 1 addition & 1 deletion instagram_private_api/__init__.py
Expand Up @@ -5,4 +5,4 @@
from .errors import ClientError, ClientLoginError, ClientLoginRequiredError, ClientCookieExpiredError


__version__ = '1.1.4'
__version__ = '1.1.5'
2 changes: 1 addition & 1 deletion instagram_web_api/__init__.py
Expand Up @@ -5,4 +5,4 @@
from .errors import ClientError, ClientLoginError, ClientCookieExpiredError


__version__ = '1.1.4'
__version__ = '1.1.5'
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -4,7 +4,7 @@
from distutils.core import setup

__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '1.1.4'
__version__ = '1.1.5'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 7593c88

Please sign in to comment.