Skip to content

Commit

Permalink
Bump version to 1.2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ping committed Apr 30, 2017
1 parent 922ac0b commit d7ba0df
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 12 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Change Log

## 1.2.6 (pending)
## 1.2.6
- Change default user agent constants
- Video: implement chunks upload retry, remove configure delay
- Video:
- implement chunks upload retry
- remove configure delay
- support using a file-like object instead of having the whole file in memory
- Implement collections
- Update app version to 10.16.0
- Other minor fixes
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.5-orange.svg)](https://github.com/ping/instagram_private_api/releases)
[![Release](https://img.shields.io/badge/release-v1.2.6-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://[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 @@ -59,9 +59,9 @@
# built documents.
#
# The short X.Y version.
version = u'1.2.5'
version = u'1.2.6'
# The full version, including alpha/beta/rc tags.
release = u'1.2.5'
release = u'1.2.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 @@ -5,4 +5,4 @@
from .errors import ClientError, ClientLoginError, ClientLoginRequiredError, ClientCookieExpiredError, ClientThrottledError


__version__ = '1.2.5'
__version__ = '1.2.6'
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.5'
__version__ = '1.2.6'
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 <[email protected]>'
__version__ = '1.2.5'
__version__ = '1.2.6'

packages = [
'instagram_private_api',
Expand Down

0 comments on commit d7ba0df

Please sign in to comment.