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

Commit

Permalink
set version to 3.0rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
bear committed Dec 29, 2015
1 parent 6a42fe1 commit 25b7068
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 5 deletions.
29 changes: 26 additions & 3 deletions CHANGES
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
2015-12-28
Large number of changes related to making the code Python v3 compatible.
See the messy details at https://github.com/bear/python-twitter/pull/251

Pull Requests
#267 initialize Api.__auth fixes #119 by rbpasker
#266 Add full_text and page options in GetDirectMessages function by mistersalmon
#264 Updates Media object with new methods, adds id param, adds tests by jeremylow
#262 Update get_access_token.py by lababidi
#261 Adding Collections by ryankicks
#260 Added UpdateBackgroundImage method and added profile_link_color argument to UpdateProfile by BrandonBielicki
#259 Added GetFriendIDsPaged by RockHoward
#254 Adding api methods for suggestions and suggestions/:slug by trentstollery
#253 Added who parameter to api.GetSearch by wilsonand1
#250 adds UpdateFriendship (shared Add/Edit friendship) by jheld
#249 Fixed Non-ASCII printable representation in Trend by der-Daniel
#246 Add __repr__ for status by era
#245 Python-3 Fix: decode bytestreams for json load by ligthyear
#243 Remove references to outdated API functionality: GetUserByEmail by Vector919
#239 Correct GetListsList docstring by tedmiston

Probably a whole lot that I missed - ugh!

2015-10-05
Added who to api.GetSearch

Expand Down Expand Up @@ -57,7 +80,7 @@ need to backfill commit log entries!
2013-06-07
changed version to 1.0.1
added README bit about Python version requirement

2013-06-04
changed version to 1.0
removed doc directory until we can update docs for v1.1 API
Expand All @@ -74,7 +97,7 @@ need to backfill commit log entries!

removed GetPublicTimeline from the docs so as to stop confusing
new folks since it was the first example given ... d'oh!

2013-02-10
bumped version to 0.8.6

Expand All @@ -98,7 +121,7 @@ need to backfill commit log entries!
to push to PyPI and other places

all work now will be on getting the v1.1 API supported

2012-11-04
https://github.com/bear/python-twitter/issues/4
Api.UserLookUp() throws attribute error when corresponding screen_name is not found
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def read(*paths):

setup(
name='python-twitter',
version='3.0',
version='3.0rc1',
author='The Python-Twitter Developers',
author_email='[email protected]',
license='Apache License 2.0',
Expand Down
2 changes: 1 addition & 1 deletion twitter/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from __future__ import absolute_import

__author__ = '[email protected]'
__version__ = '2.3'
__version__ = '3.0rc1'

import json # noqa

Expand Down

0 comments on commit 25b7068

Please sign in to comment.