Skip to content

Commit 651f1ff

Browse files
author
Stan van Rooy
authored
202 user object is not subscriptable (#204)
* fix: use property instead of __getitem__ Fixes #202 * release: v2.0.5
1 parent 7fcb242 commit 651f1ff

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
# Changelog
22

3+
## 2.0.5 (2021-08-12)
4+
5+
#### Fixes
6+
7+
* use property instead of __getitem__ ([#202](https://github.com/stanvanrooy/instauto/issues/202))
8+
9+
Full set of changes: [`2.0.4...2.0.5`](https://github.com/stanvanrooy/instauto/compare/2.0.3...2.0.5)
10+
311
## 2.0.4 (2021-08-07)
412

513
#### Fixes
614
* use `dict.get` instead of key index
715

8-
Full set of changes: [`2.0.2...2.0.4`](https://github.com/stanvanrooy/instauto/compare/2.0.3...2.0.4)
16+
Full set of changes: [`2.0.3...2.0.4`](https://github.com/stanvanrooy/instauto/compare/2.0.3...2.0.4)
917

1018

1119
## 2.0.3 (2021-08-02)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
setup(
55
name='instauto',
66
packages=setuptools.find_packages(),
7-
version='2.0.4',
7+
version='2.0.5',
88
license='MIT',
99
description='Python wrapper for the private Instagram API',
1010
author='Stan van Rooy',
1111
author_email='stan@rooy.dev',
1212
url='https://github.com/stanvanrooy/instauto',
13-
download_url='https://github.com/stanvanrooy/instauto/archive/2.0.4.tar.gz',
13+
download_url='https://github.com/stanvanrooy/instauto/archive/2.0.5.tar.gz',
1414
keywords=['instagram api', 'private instagram api'],
1515
install_requires=[
1616
'requests',

0 commit comments

Comments
 (0)