Twitter4J 1.1.0 released
Twitter4J 1.1.0 has just been released and is available at the maven central repository.
Twitter4J is an open-sourced and mavenizable Java library for the Twitter API which is released under a BSD-style license.
http://yusuke.homeip.net/twitter4j/index.html
With Twitter4J, you can easily integrate your application with twitter.com.
Twitter4J 1.1.0 includes small bug fixes and its memory foot print has been dramatically improved.
Please take extra care upon migration since the release is slightly incompatible with prior versions.
So it is strongly recommended to recompile your application instead of just replacing the jar file.
Methods updated:
TFJ-41: Following methods now return long instead of int since the status id will reach Integer.MAX_VALUE(2147483647).
long UserWithStatus.getStatusId()
long getInReplyToStatusId()
java.util.Date DirectMessage#getCreatedAt()
Methods added:
TFJ-45:
List<User> getFollowers(String id)
List<User> getFollowers(String id, int page)
Methods removed:
TFJ-43: Following methods are no longer supported by the Twitter API and removed as of release 1.1.0.
Twitter.archive()
Twitter.archive(int page)
You can check the complete list of changes at the Twitter4J Jira site.
http://yusuke.homeip.net/jira/browse/TFJ/fixforversion/10100