*** Version 0.6.3 (beta) - API 0.6.0 (beta) - 2010-09-12


* Applied patch from steve_twitpic: support for users/lookup, geo/search, and geo/id (fixes #17694)
* Updated the search endpoint
 

*** Version 0.6.2 (beta) - API 0.6.0 (beta) - 2010-08-08


* Search and routing fixes from nocontents@gmail.com
   

*** Version 0.6.1 (beta) - API 0.6.0 (beta) - 2010-06-05


* Fixed #17345.  Use internal errors for libxml to surpress warnings
   

*** Version 0.6.0 (beta) - API 0.6.0 (beta) - 2010-06-01


* Updated statuses/update method : added lat, long, place_id and display_coordinates parameters (closes feature request #17421)
* Added lists and trends support from http://blog.cheki.net/archives/1618
* Added generatePackage.php for easy package.xml management
   

*** Version 0.5.1 (beta) - API 0.5.1 (beta) - 2010-02-28


* Fixed bug #17075.  Wrong test in package
* Added mb_string requirement after reported issues
   

*** Version 0.5.0 (beta) - API 0.5.0 (beta) - 2010-01-06


REST API changes:
-----------------
+ added statuses/home_timeline method,
+ added statuses/retweeted_by_me method,
+ added statuses/retweeted_to_me method,
+ added statuses/retweets_of_me method,
+ added statuses/retweet method,
+ added statuses/retweets method,
+ added report_spam method,
* changed old API url (http://twitter.com) to http://api.twitter.com/1,
* replaced page by cursor attribute in statuses/friends, statuses/followers, friends/ids and followers/ids,
* set auth required to false in account/rate_limit_status,
- removed email parameter in account/update_profile method,

Search API changes:
-------------------
+ added locale parameter to search method.

Other changes:
--------------
* fixed screenname regex,
* fixed and improved some tests.
   

*** Version 0.4.0 (beta) - API 0.4.0 (beta) - 2009-09-14


New Features:
-------------
* OAuth support [shupp]
* SSL support [izi]

Fixes/improvements:
-------------------
* Fixed a bug in UTF8 detection [izi]
* Fixed some unit tests [izi]
* make use of setOption/getOption internally instead of manipulating the options array directly [izi]
   

*** Version 0.3.0 (beta) - API 0.3.0 (beta) - 2009-08-26


This is a major update of Services_Twitter with some backward incompatible changes. 
Please read this carefully before upgrading.

General changes and bug fixes:
------------------------------
* moved code to svn.php.net (fixes bug #16534) [izi]
* removed endpoints code (hard to maintain) in favor of a xml definition file and generic methods (fixes #15472) [izi]
* better validation of parameters [izi]
* switch to JSON format as default (XML is still available) [izi]
* switch to HTTP_Request2 (fixes bug #15072) [izi]
* make the test suite runnable locally with mock HTTP responses (fixes bug #15084 #15085), coverage is now 100% [izi]
* updated dependencies in package.xml (fixes bug #16522) [izi]
* automagically convert all strings to unicode before sending them to twitter [izi]

Search API changes:
-------------------
+ added trends/current method [izi]
+ added trends/daily method [izi]
+ added trends/weekly method [izi]

REST API changes:
-----------------
* statuses/friends_timeline: removed "since" parameter (no longer supported) and added "max_id" parameter [izi]
* statuses/user_timeline: removed "since" parameter (no longer supported) and added "user_id" and "screen_name" parameters [izi]
+ added statuses/mentions method (fixes bug #16475) [izi]
- removed statuses/replies (no longer supported) [izi]
* statuses/friends: removed "since" parameter (no longer supported) and added "user_id" and "screen_name" parameters [izi]
* statuses/followers: added "user_id" and "screen_name" parameters [izi]
* direct_messages: removed "since" parameter (no longer supported) and added "max_id" and "count" parameters [izi]
* direct_messages/sent: removed "since" parameter (no longer supported) and added "max_id" and "count" parameters [izi]
* direct_messages/new: added "user_id" and "screen_name" parameters [izi]
* friendships/create: added "user_id" and "screen_name" parameters [izi]
* friendships/destroy: added "user_id" and "screen_name" parameters [izi]
* users/show: removed "email" parameter, no longer supported by the API [izi]
+ added friendships/show method [izi]
+ added "Social Graph methods": friends/ids and followers/ids [izi]
* notifications/follow: added "user_id" and "screen_name" parameters [izi]
* notifications/leave: added "user_id" and "screen_name" parameters [izi]
+ added account/update_profile_colors [izi]
+ added account/update_delivery_device [izi]
+ added account/update_profile_image [izi]
+ added account/update_profile_background_image [izi]
+ added account/update_profile [izi]
+ added blocks/exists [izi]
+ added blocks/blocking [izi]
+ added saved_searches [izi]
+ added saved_searches/show [izi]
+ added saved_searches/create [izi]
+ added saved_searches/destroy [izi]
- removed help/downtime_schedule (no longer supported) [izi]

*** IMPORTANT: BACKWARD INCOMPATIBLE CHANGES ***

- $twitter->search->query() has been replaced by $twitter->search() (you can also write $twitter->search->search())
- the twitter API has changed, so some methods have been updated, removed or added (see above), you'll have probably to update your code
- there are maybe some others incompatible changes, but it will be trivial to update your code
   

*** Version 0.2.0 (beta) - API 0.2.0 (beta) - 2008-11-01


* Fixed a bug in the Services_Twitter_Account::end_session() method (jstump)
* Fixed a singleton problem that only allowed a single instance to ever run (#14840, izi)
* Added ability to specify an in_reply_to_status_id when sending an update (#14714, jstump)
* Added ability to specify a source using setOption('source', $source) that is sent with all requests (#14715, jstump)
* Added ability to retrieve someone else's followers (#14936, davidc)
* Added Services_Twitter_Account::update_location() method (jstump)
* Added Services_Twitter_Account::update_delivery_device() method (jstump)
* Added Services_Twitter_Search::trends() method (jstump)
* Added Services_Twitter_Search::query() method (jstump)
   

*** Version 0.0.3 (beta) - API 0.0.3 (beta) - 2008-07-07


* Added Services_Twitter_Common::setOption() to allow setting a timeout and modifying the HTTP User-Agent.
   

*** Version 0.0.2 (beta) - API 0.0.2 (beta) - 2008-04-15


* Added Services_Twitter_Account::expire_session() + tests
* Added Services_Twitter_Account::archive() + tests
* Added Services_Twitter::favorites() + tests
* Added Services_Twitter_Favorites::create() + tests
* Added Services_Twitter_Favorites::destroy() + tests
* Added Services_Twitter_Notifications::leave() + tests
* Added Services_Twitter_Notifications::follow() + tests
   

*** Version 0.0.1 (beta) - API 0.0.1 (beta) - 2008-04-12


* Initial release
   

