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

Commit b10baa8

Browse files
committed
bump version
1 parent 85b12e0 commit b10baa8

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

doc/changelog.rst

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

4+
Version 3.4.2
5+
=============
6+
7+
Bugfixes:
8+
9+
* Allow upload of GIFs with size up to 15mb. See `#538 <https://github.com/bear/python-twitter/pull/538>`_
10+
411
Version 3.4.1
512
=============
613

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.1'
60+
version = '3.4'
6161
# The full version, including alpha/beta/rc tags.
62-
release = '3.4.1'
62+
release = '3.4.2'
6363

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

twitter/__init__.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/usr/bin/env python
2+
# -*- coding: utf-8 -*-
23
#
3-
# vim: sw=2 ts=2 sts=2
4-
#
5-
# Copyright 2007 The Python-Twitter Developers
4+
# Copyright 2007-2018 The Python-Twitter Developers
65
#
76
# Licensed under the Apache License, Version 2.0 (the "License");
87
# you may not use this file except in compliance with the License.
@@ -16,14 +15,14 @@
1615
# See the License for the specific language governing permissions and
1716
# limitations under the License.
1817

19-
"""A library that provides a Python interface to the Twitter API"""
18+
"""A library that provides a Python interface to the Twitter API."""
2019
from __future__ import absolute_import
2120

2221
__author__ = 'The Python-Twitter Developers'
2322
__email__ = '[email protected]'
2423
__copyright__ = 'Copyright (c) 2007-2016 The Python-Twitter Developers'
2524
__license__ = 'Apache License 2.0'
26-
__version__ = '3.4.1'
25+
__version__ = '3.4.2'
2726
__url__ = 'https://github.com/bear/python-twitter'
2827
__download_url__ = 'https://pypi.python.org/pypi/python-twitter'
2928
__description__ = 'A Python wrapper around the Twitter API'

0 commit comments

Comments
 (0)