From ef75f8318909d11e1e0b6bdbe2e674c6133b0050 Mon Sep 17 00:00:00 2001 From: ping Date: Sat, 3 Mar 2018 11:24:03 +0800 Subject: [PATCH] Bump version to 1.4.1 --- .github/ISSUE_TEMPLATE.md | 2 +- CHANGELOG.md | 2 +- README.md | 4 ++-- docs/conf.py | 4 ++-- docs/usage.rst | 4 ++-- instagram_private_api/__init__.py | 2 +- instagram_web_api/__init__.py | 2 +- setup.py | 2 +- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 6b619eff..9a2d68da 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -10,7 +10,7 @@ --- ### Before submitting an issue, make sure you have: -- [ ] Updated to the lastest version v1.4.0 +- [ ] Updated to the lastest version v1.4.1 - [ ] Read the [README](https://github.com/ping/instagram_private_api/blob/master/README.md) and [docs](https://instagram-private-api.readthedocs.io/en/latest/) - [ ] [Searched](https://github.com/ping/instagram_private_api/search?type=Issues) the bugtracker for similar issues including **closed** ones - [ ] Reviewed the sample code in [tests](https://github.com/ping/instagram_private_api/tree/master/tests) and [examples](https://github.com/ping/instagram_private_api/tree/master/examples) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02bcfbf9..d0893dba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Change Log -## 1.4.1 (pending) +## 1.4.1 - App API: * Refactored error detection. New ``ClientCheckpointRequiredError``, ``ClientChallengeRequiredError``, ``ClientSentryBlockError`` * New highlight endpoints diff --git a/README.md b/README.md index 92ba4238..04830de4 100644 --- a/README.md +++ b/README.md @@ -44,11 +44,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la Install with pip: -``pip install git+https://git@github.com/ping/instagram_private_api.git@1.4.0`` +``pip install git+https://git@github.com/ping/instagram_private_api.git@1.4.1`` To update: -``pip install git+https://git@github.com/ping/instagram_private_api.git@1.4.0 --upgrade`` +``pip install git+https://git@github.com/ping/instagram_private_api.git@1.4.1 --upgrade`` To update with latest repo code: diff --git a/docs/conf.py b/docs/conf.py index 8c5ffc97..87a5d54c 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = u'1.4.0' +version = u'1.4.1' # The full version, including alpha/beta/rc tags. -release = u'1.4.0' +release = u'1.4.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/usage.rst b/docs/usage.rst index 66ae8356..ea6cb694 100644 --- a/docs/usage.rst +++ b/docs/usage.rst @@ -10,13 +10,13 @@ Install via pip .. code-block:: bash - $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.4.0 + $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.4.1 Update your install with the latest release .. code-block:: bash - $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.4.0 --upgrade + $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.4.1 --upgrade Force an update from source diff --git a/instagram_private_api/__init__.py b/instagram_private_api/__init__.py index 3cbaea0d..e2b0fd84 100644 --- a/instagram_private_api/__init__.py +++ b/instagram_private_api/__init__.py @@ -12,4 +12,4 @@ from .endpoints.common import MediaTypes -__version__ = '1.4.0' +__version__ = '1.4.1' diff --git a/instagram_web_api/__init__.py b/instagram_web_api/__init__.py index f58554f4..52ff6d2d 100644 --- a/instagram_web_api/__init__.py +++ b/instagram_web_api/__init__.py @@ -9,4 +9,4 @@ from .common import ClientDeprecationWarning -__version__ = '1.4.0' +__version__ = '1.4.1' diff --git a/setup.py b/setup.py index bda14c81..ac3de42b 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ has_mock = False __author__ = 'ping ' -__version__ = '1.4.0' +__version__ = '1.4.1' packages = [ 'instagram_private_api',