Skip to content

Commit

Permalink
Bump version to 1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed Mar 14, 2017
1 parent 1dfc57c commit 638df01
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
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.2-orange.svg)](https://github.com/ping/instagram_private_api/releases)
[![Release](https://img.shields.io/badge/release-v1.1.3-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/)

## Overview
Expand Down Expand Up @@ -43,11 +43,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.2``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.3``

To update:

``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.2 --upgrade``
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.3 --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 @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.1.2'
version = u'1.1.3'
# The full version, including alpha/beta/rc tags.
release = u'1.1.2'
release = u'1.1.3'

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

.. code-block:: bash
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.2 --upgrade
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.1.3 --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


__version__ = '1.1.2'
__version__ = '1.1.3'
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.1.2'
__version__ = '1.1.3'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from distutils.core import setup

__author__ = 'ping <lastmodified@gmail.com>'
__version__ = '1.1.2'
__version__ = '1.1.3'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 638df01

Please sign in to comment.