From b10baa882635f2c86d444eaa9a7528de47f55c74 Mon Sep 17 00:00:00 2001 From: Jeremy Low Date: Thu, 7 Jun 2018 13:29:39 -0400 Subject: [PATCH] bump version --- doc/changelog.rst | 7 +++++++ doc/conf.py | 4 ++-- twitter/__init__.py | 9 ++++----- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/doc/changelog.rst b/doc/changelog.rst index e3aec468..18050c6e 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,6 +1,13 @@ Changelog --------- +Version 3.4.2 +============= + +Bugfixes: + +* Allow upload of GIFs with size up to 15mb. See `#538 `_ + Version 3.4.1 ============= diff --git a/doc/conf.py b/doc/conf.py index 41a6cae8..2121447d 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -57,9 +57,9 @@ # built documents. # # The short X.Y version. -version = '3.4.1' +version = '3.4' # The full version, including alpha/beta/rc tags. -release = '3.4.1' +release = '3.4.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/twitter/__init__.py b/twitter/__init__.py index 24cec746..c6e433f8 100644 --- a/twitter/__init__.py +++ b/twitter/__init__.py @@ -1,8 +1,7 @@ #!/usr/bin/env python +# -*- coding: utf-8 -*- # -# vim: sw=2 ts=2 sts=2 -# -# Copyright 2007 The Python-Twitter Developers +# Copyright 2007-2018 The Python-Twitter Developers # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,14 +15,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -"""A library that provides a Python interface to the Twitter API""" +"""A library that provides a Python interface to the Twitter API.""" from __future__ import absolute_import __author__ = 'The Python-Twitter Developers' __email__ = 'python-twitter@googlegroups.com' __copyright__ = 'Copyright (c) 2007-2016 The Python-Twitter Developers' __license__ = 'Apache License 2.0' -__version__ = '3.4.1' +__version__ = '3.4.2' __url__ = 'https://github.com/bear/python-twitter' __download_url__ = 'https://pypi.python.org/pypi/python-twitter' __description__ = 'A Python wrapper around the Twitter API'