Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylow committed Jun 7, 2018
1 parent 85b12e0 commit b10baa8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 7 additions & 0 deletions doc/changelog.rst
@@ -1,6 +1,13 @@
Changelog
---------

Version 3.4.2
=============

Bugfixes:

* Allow upload of GIFs with size up to 15mb. See `#538 <https://github.com/bear/python-twitter/pull/538>`_

Version 3.4.1
=============

Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -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.
Expand Down
9 changes: 4 additions & 5 deletions 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.
Expand All @@ -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'
Expand Down

0 comments on commit b10baa8

Please sign in to comment.