Skip to content

Commit

Permalink
Bump version to 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed Jan 18, 2017
1 parent 7158059 commit 4e44ca8
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Change Log

## 1.0.6 (pending)
## 1.0.6
- Support specification of location to ``post_photo()``, ``post_video()``
- Proxy support (alpha)
- Support usertags in ``edit_media()`` (app client)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,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://[email protected]/ping/[email protected].5``
``pip install git+ssh://[email protected]/ping/[email protected].6``

To update:

``pip install git+ssh://[email protected]/ping/[email protected].5 --upgrade``
``pip install git+ssh://[email protected]/ping/[email protected].6 --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.0.5'
version = u'1.0.6'
# The full version, including alpha/beta/rc tags.
release = u'1.0.5'
release = u'1.0.6'

# 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://[email protected]/ping/[email protected].5
$ pip install git+ssh://[email protected]/ping/[email protected].6
Update your install with the latest release

.. code-block:: bash
$ pip install git+ssh://[email protected]/ping/[email protected].5 --upgrade
$ pip install git+ssh://[email protected]/ping/[email protected].6 --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 @@ -3,4 +3,4 @@
from .errors import ClientError, ClientLoginError, ClientLoginRequiredError, ClientCookieExpiredError


__version__ = '1.0.5'
__version__ = '1.0.6'
2 changes: 1 addition & 1 deletion instagram_web_api/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .errors import ClientError, ClientLoginError, ClientCookieExpiredError


__version__ = '1.0.5'
__version__ = '1.0.6'
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 <[email protected]>'
__version__ = '1.0.5'
__version__ = '1.0.6'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit 4e44ca8

Please sign in to comment.