Skip to content
This repository was archived by the owner on Aug 7, 2024. It is now read-only.

Commit 41be59e

Browse files
committed
bump version and update changelog for 3.4.1
1 parent 564e6bb commit 41be59e

File tree

3 files changed

+16
-3
lines changed

3 files changed

+16
-3
lines changed

doc/changelog.rst

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,19 @@
11
Changelog
22
---------
33

4+
Version 3.4.1
5+
=============
6+
7+
Bugfixes:
8+
9+
* Fix an issue where :py:func:`calc_expected_status_length` was failing for python 2 due to a failure to convert a bytes string to unicode. `Github issue #546 <https://github.com/bear/python-twitter/issues/546>`_.
10+
11+
* Documentation fix for :py:func:`twitter.api.Api.UsersLookup`. UsersLookup can take a string or a list and properly parses both of them now. Github issues `#535 <https://github.com/bear/python-twitter/issues/535>`_ and `#549 <https://github.com/bear/python-twitter/issues/549>`_.
12+
13+
* Properly decode response content for :py:func:`twitter.twitter_utils.http_to_file`. `Github issue #521 <https://github.com/bear/python-twitter/issues/521>`_.
14+
15+
* Fix an issue with loading extended_tweet entities from Streaming API where tweets would be truncated when converting to a :py:class:`twitter.models.Status`. Github issues `#491 <https://github.com/bear/python-twitter/issues/491>`_ and `#506 <https://github.com/bear/python-twitter/issues/506>`_.
16+
417
Version 3.4
518
===========
619

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@
5757
# built documents.
5858
#
5959
# The short X.Y version.
60-
version = '3.4'
60+
version = '3.4.1'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '3.4'
62+
release = '3.4.1'
6363

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

twitter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
__email__ = 'python-twitter@googlegroups.com'
2424
__copyright__ = 'Copyright (c) 2007-2016 The Python-Twitter Developers'
2525
__license__ = 'Apache License 2.0'
26-
__version__ = '3.4'
26+
__version__ = '3.4.1'
2727
__url__ = 'https://github.com/bear/python-twitter'
2828
__download_url__ = 'https://pypi.python.org/pypi/python-twitter'
2929
__description__ = 'A Python wrapper around the Twitter API'

0 commit comments

Comments
 (0)