From aaaca46e6e3e02d6867b3b291acb4c081dd63535 Mon Sep 17 00:00:00 2001 From: Stan van Rooy Date: Wed, 17 Feb 2021 20:56:47 +0100 Subject: [PATCH] chore: setup for release 1.0.6 --- CHANGELOG.md | 13 +++++++++++++ setup.py | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 33e1b7c4..4adbff27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,19 @@ All notable changes to this project will be documented in this file. +### 1.0.6 (2021-02-17) + +### Bugfixes + +* null check ([2cb0f26](https://github.com/stanvanrooy/instauto/commit/2cb0f26180b220f06e5568a9909b8c8ada7c7565)) + +### Features + +* Add time window to vary delay between actions ([5435c84](https://github.com/stanvanrooy/instauto/commit/5435c84d3caf5731ab7cbbd5b438c37dfd5a0f8a)) +* Changed init arguments of `Bot` to expect an `ApiClient` instance ([e1d1b2f](https://github.com/stanvanrooy/instauto/commit/e1d1b2f4b2aba3a01e74e3f43ab09bb8fab95323)) +* Do not log authorization header ([fca481e](https://github.com/stanvanrooy/instauto/commit/7ca481ecef1d18d0d983f266dcb1b3c029e8f2f0)) +* Refresh pigeon session ([c25788c](https://github.com/stanvanrooy/instauto/commit/c25788cfbe9848c8e22950eb07929d7737697ca4)) +* Support two factor authentication ([a1e8c99](https://github.com/stanvanrooy/instauto/commit/a1e8c990803725c55af3d89a816e88c2023a277f)) ### 1.0.5 (2020-12-16) diff --git a/setup.py b/setup.py index fb9fb8cf..920709d0 100644 --- a/setup.py +++ b/setup.py @@ -4,13 +4,13 @@ setup( name='instauto', packages=setuptools.find_packages(), - version='1.0.5', + version='1.0.6', license='MIT', description='Python wrapper for the private Instagram API', author='Stan van Rooy', author_email='stan@rooy.dev', url='https://github.com/stanvanrooy/instauto', - download_url='https://github.com/stanvanrooy/instauto/archive/1.0.5.tar.gz', + download_url='https://github.com/stanvanrooy/instauto/archive/1.0.6.tar.gz', keywords=['instagram api', 'private instagram api'], install_requires=[ 'requests',