Skip to content

Commit 2ce860d

Browse files
committed
Bump version to 1.3.2
1 parent 4a2d7ce commit 2ce860d

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Change Log
22

3-
## 1.3.2 (pending)
3+
## 1.3.2
44
- App API:
55
* New endpoints: ``feed_only_me()``, ``media_only_me()``, ``media_undo_only_me()``, ``enable_post_notifications()``, ``disable_post_notifications()``
66
* Deprecated: ``user_map()``, ``expose()``

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,11 @@ Documentation is available at https://instagram-private-api.readthedocs.io/en/la
4242

4343
Install with pip:
4444

45-
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1``
45+
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.2``
4646

4747
To update:
4848

49-
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1 --upgrade``
49+
``pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.2 --upgrade``
5050

5151
To update with latest repo code:
5252

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,9 @@
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'1.3.1'
62+
version = u'1.3.2'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.3.1'
64+
release = u'1.3.2'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

docs/usage.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ Install via pip
1010

1111
.. code-block:: bash
1212
13-
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1
13+
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.2
1414
1515
Update your install with the latest release
1616

1717
.. code-block:: bash
1818
19-
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.1 --upgrade
19+
$ pip install git+ssh://git@github.com/ping/instagram_private_api.git@1.3.2 --upgrade
2020
2121
Force an update from source
2222

instagram_private_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
from .endpoints.common import MediaTypes
88

99

10-
__version__ = '1.3.1'
10+
__version__ = '1.3.2'

instagram_web_api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from .errors import ClientError, ClientLoginError, ClientCookieExpiredError
66

77

8-
__version__ = '1.3.1'
8+
__version__ = '1.3.2'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
has_mock = False
1111

1212
__author__ = 'ping <lastmodified@gmail.com>'
13-
__version__ = '1.3.1'
13+
__version__ = '1.3.2'
1414

1515
packages = [
1616
'instagram_private_api',

0 commit comments

Comments
 (0)