From 125819b023853d2e5d19761d99a1396f587a313e Mon Sep 17 00:00:00 2001 From: Ahmet Taspinar Date: Wed, 22 Jul 2020 13:43:15 +0300 Subject: [PATCH] update changelog, setup.py --- changelog.txt | 8 ++++++++ setup.py | 2 +- twitterscraper/__init__.py | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/changelog.txt b/changelog.txt index 0edbf22..afca4f1 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,13 @@ # twitterscraper changelog +# 1.5.0 ( 2020-06-05 ) +## Fixed +- PR304: Fixed query.py by adding 'X-Requested-With': 'XMLHttpRequest' to header value. +- PR253: Fixed Docker build +## Added +- PR313: Added example to README (section 2.3.1). +- PR277: Support emojis by adding the alt text of images to the tweet text. + # 1.4.0 ( 2019-11-03 ) ## Fixed - PR228: Fixed Typo in Readme diff --git a/setup.py b/setup.py index a107857..2951266 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name='twitterscraper', - version='1.4.0', + version='1.5.0', description='Tool for scraping Tweets', url='https://github.com/taspinar/twitterscraper', author=['Ahmet Taspinar', 'Lasse Schuirmann'], diff --git a/twitterscraper/__init__.py b/twitterscraper/__init__.py index d92916e..9d48a21 100644 --- a/twitterscraper/__init__.py +++ b/twitterscraper/__init__.py @@ -1,11 +1,11 @@ # TwitterScraper -# Copyright 2016-2019 Ahmet Taspinar +# Copyright 2016-2020 Ahmet Taspinar # See LICENSE for details. """ Twitter Scraper tool """ -__version__ = '1.4.0' +__version__ = '1.5.0' __author__ = 'Ahmet Taspinar' __license__ = 'MIT'