Skip to content

Commit 125819b

Browse files
committed
update changelog, setup.py
1 parent 977a8c8 commit 125819b

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

changelog.txt

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# twitterscraper changelog
22

3+
# 1.5.0 ( 2020-06-05 )
4+
## Fixed
5+
- PR304: Fixed query.py by adding 'X-Requested-With': 'XMLHttpRequest' to header value.
6+
- PR253: Fixed Docker build
7+
## Added
8+
- PR313: Added example to README (section 2.3.1).
9+
- PR277: Support emojis by adding the alt text of images to the tweet text.
10+
311
# 1.4.0 ( 2019-11-03 )
412
## Fixed
513
- PR228: Fixed Typo in Readme

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name='twitterscraper',
9-
version='1.4.0',
9+
version='1.5.0',
1010
description='Tool for scraping Tweets',
1111
url='https://github.com/taspinar/twitterscraper',
1212
author=['Ahmet Taspinar', 'Lasse Schuirmann'],

twitterscraper/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# TwitterScraper
2-
# Copyright 2016-2019 Ahmet Taspinar
2+
# Copyright 2016-2020 Ahmet Taspinar
33
# See LICENSE for details.
44
"""
55
Twitter Scraper tool
66
"""
77

8-
__version__ = '1.4.0'
8+
__version__ = '1.5.0'
99
__author__ = 'Ahmet Taspinar'
1010
__license__ = 'MIT'
1111

0 commit comments

Comments
 (0)