From fe29b092f591a059502ec070dfc4ba4113c34e43 Mon Sep 17 00:00:00 2001 From: ping Date: Thu, 22 Jun 2017 12:24:06 +0800 Subject: [PATCH] Bump version to 1.3.4 --- CHANGELOG.md | 5 +++++ 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 +- 7 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 547d00f5..0ac686e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Change Log +## 1.3.4 +- App API: + * New endpoints: ``ignore_user()``, ``remove_follower()``, ``replay_broadcast_comments()``, ``replay_broadcast_likes()`` +- Minor fixes + ## 1.3.3 - Web API: * New endpoints: ``user_info2()`` diff --git a/README.md b/README.md index 1d59896e..d994fe44 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la Install with pip: -``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.3`` +``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.4`` To update: -``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.3 --upgrade`` +``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.4 --upgrade`` To update with latest repo code: diff --git a/docs/conf.py b/docs/conf.py index b5dc4a95..0e181521 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,9 +59,9 @@ # built documents. # # The short X.Y version. -version = u'1.3.3' +version = u'1.3.4' # The full version, including alpha/beta/rc tags. -release = u'1.3.3' +release = u'1.3.4' # 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 d3510536..52f1b3ae 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.3.3 + $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.4 Update your install with the latest release .. code-block:: bash - $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.3 --upgrade + $ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.4 --upgrade Force an update from source diff --git a/instagram_private_api/__init__.py b/instagram_private_api/__init__.py index 507e8948..71e67b7e 100644 --- a/instagram_private_api/__init__.py +++ b/instagram_private_api/__init__.py @@ -7,4 +7,4 @@ from .endpoints.common import MediaTypes -__version__ = '1.3.3' +__version__ = '1.3.4' diff --git a/instagram_web_api/__init__.py b/instagram_web_api/__init__.py index b6934984..48fddf7d 100644 --- a/instagram_web_api/__init__.py +++ b/instagram_web_api/__init__.py @@ -6,4 +6,4 @@ from .common import ClientDeprecationWarning -__version__ = '1.3.3' +__version__ = '1.3.4' diff --git a/setup.py b/setup.py index 0684510b..f599a25f 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ has_mock = False __author__ = 'ping ' -__version__ = '1.3.3' +__version__ = '1.3.4' packages = [ 'instagram_private_api',