Release v3.9.0
authorJosh Roesslein <jroesslein@gmail.com>
Sat, 11 Jul 2020 19:21:17 +0000 (12:21 -0700)
committerJosh Roesslein <jroesslein@gmail.com>
Sat, 11 Jul 2020 19:21:17 +0000 (12:21 -0700)
CHANGELOG.md
README.md
tweepy/__init__.py

index 8e7fd508a72f3bcb48207495074050b9b1072f8b..45b311b0441e563841e3e295c6ef0c1a9606899e 100644 (file)
@@ -1,5 +1,32 @@
 Also see https://github.com/tweepy/tweepy/releases for changelogs.
 
+Version 3.9.0
+-------------
+### New Features / Improvements
+- Add DMCursorIterator ([#1262](https://github.com/tweepy/tweepy/pull/1262))
+- Add API.create_media_metadata ([Issue #716](https://github.com/tweepy/tweepy/issues/716))
+- Update allowed parameters for API.get_status
+  - trim_user, include_my_retweet, include_entities, include_ext_alt_text, include_card_uri
+- Update allowed parameters for API.statuses_lookup
+  - include_ext_alt_text, include_card_uri
+- Optimize API.statuses_lookup, API.create_media_metadata, API.update_status
+- Add reverse as allowed parameter for API.lists_all
+- Add count as allowed parameter for API.lists_memberships
+- Add count as allowed parameter for API.lists_subscriptions
+- Add include_entities as allowed parameter for API.list_timeline
+- Add allowed parameters to API.list_subscribers
+  - count, include_entities, skip_status
+- Support WebP images ([Issue #1298](https://github.com/tweepy/tweepy/issues/1298))
+- Add missing attributes to Relationship model ([#1375](https://github.com/tweepy/tweepy/pull/1375))
+- Increase max image size for gif ([#1338](https://github.com/tweepy/tweepy/pull/1338))
+- Save the raw JSON on DirectMessages ([#1342](https://github.com/tweepy/tweepy/pull/1342))
+
+### Bug Fixes
+- Allow image filenames without extension ([#1086](https://github.com/tweepy/tweepy/pull/1086))
+- Fix handling of invalid credentials for API.verify_credentials
+- Handle boolean value for API.verify_credentials include_email parameter
+- Fix handling of positional arguments for API.statuses_lookup
+
 Version 3.8.0
 -------------
 ### New Features / Improvements
index f83114935bf807c4b2b1d8c86e4cd0dda2c28689..bd4259fa5b0f0783e8db49eb10fcf4421949d5bc 100644 (file)
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@ Tweepy: Twitter for Python!
 ======
 
 [![Build Status](http://img.shields.io/travis/tweepy/tweepy/master.svg?style=flat)](https://travis-ci.org/tweepy/tweepy)
-[![Documentation Status](http://img.shields.io/badge/docs-v3.8.0-brightgreen.svg?style=flat)](http://docs.tweepy.org)
+[![Documentation Status](http://img.shields.io/badge/docs-v3.9.0-brightgreen.svg?style=flat)](http://docs.tweepy.org)
 [![Version](http://img.shields.io/pypi/v/tweepy.svg?style=flat)](https://pypi.org/project/tweepy/)
 [![Coverage Status](https://img.shields.io/coveralls/tweepy/tweepy/master.svg?style=flat)](https://coveralls.io/github/tweepy/tweepy?branch=master)
 [![Discord](https://img.shields.io/discord/432685901596852224.svg)](https://discord.gg/bJvqnhg)
index 92c91f266d844e7c65a9fb4004cd30b65aed9864..c4401b692368e8a89345ed5c6ebeb27e787ded7d 100644 (file)
@@ -5,7 +5,7 @@
 """
 Tweepy Twitter API library
 """
-__version__ = '3.8.0'
+__version__ = '3.9.0'
 __author__ = 'Joshua Roesslein'
 __license__ = 'MIT'