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

Commit 25b7068

Browse files
committed
set version to 3.0rc1
1 parent 6a42fe1 commit 25b7068

File tree

3 files changed

+28
-5
lines changed

3 files changed

+28
-5
lines changed

CHANGES

Lines changed: 26 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
2015-12-28
2+
Large number of changes related to making the code Python v3 compatible.
3+
See the messy details at https://github.com/bear/python-twitter/pull/251
4+
5+
Pull Requests
6+
#267 initialize Api.__auth fixes #119 by rbpasker
7+
#266 Add full_text and page options in GetDirectMessages function by mistersalmon
8+
#264 Updates Media object with new methods, adds id param, adds tests by jeremylow
9+
#262 Update get_access_token.py by lababidi
10+
#261 Adding Collections by ryankicks
11+
#260 Added UpdateBackgroundImage method and added profile_link_color argument to UpdateProfile by BrandonBielicki
12+
#259 Added GetFriendIDsPaged by RockHoward
13+
#254 Adding api methods for suggestions and suggestions/:slug by trentstollery
14+
#253 Added who parameter to api.GetSearch by wilsonand1
15+
#250 adds UpdateFriendship (shared Add/Edit friendship) by jheld
16+
#249 Fixed Non-ASCII printable representation in Trend by der-Daniel
17+
#246 Add __repr__ for status by era
18+
#245 Python-3 Fix: decode bytestreams for json load by ligthyear
19+
#243 Remove references to outdated API functionality: GetUserByEmail by Vector919
20+
#239 Correct GetListsList docstring by tedmiston
21+
22+
Probably a whole lot that I missed - ugh!
23+
124
2015-10-05
225
Added who to api.GetSearch
326

@@ -57,7 +80,7 @@ need to backfill commit log entries!
5780
2013-06-07
5881
changed version to 1.0.1
5982
added README bit about Python version requirement
60-
83+
6184
2013-06-04
6285
changed version to 1.0
6386
removed doc directory until we can update docs for v1.1 API
@@ -74,7 +97,7 @@ need to backfill commit log entries!
7497

7598
removed GetPublicTimeline from the docs so as to stop confusing
7699
new folks since it was the first example given ... d'oh!
77-
100+
78101
2013-02-10
79102
bumped version to 0.8.6
80103

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

100123
all work now will be on getting the v1.1 API supported
101-
124+
102125
2012-11-04
103126
https://github.com/bear/python-twitter/issues/4
104127
Api.UserLookUp() throws attribute error when corresponding screen_name is not found

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def read(*paths):
2929

3030
setup(
3131
name='python-twitter',
32-
version='3.0',
32+
version='3.0rc1',
3333
author='The Python-Twitter Developers',
3434
author_email='[email protected]',
3535
license='Apache License 2.0',

twitter/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from __future__ import absolute_import
2121

2222
__author__ = '[email protected]'
23-
__version__ = '2.3'
23+
__version__ = '3.0rc1'
2424

2525
import json # noqa
2626

0 commit comments

Comments
 (0)