All Versions
40
Latest Version
Avg Release Cycle
103 days
Latest Release
807 days ago
Changelog History
Page 4
Changelog History
Page 4
-
v0.5.2 Changes
๐ Changes
- โ Add missing attributes for Tweet, User, Entities models (#28).
-
v0.5.1 Changes
๐ Changes
- ๐ Fix application naming (:ex_twitter -> :extwitter) in config.exs (#25, #26).
- Plase use the name :extwitter instead of :ex_twitter after this version.
- ๐ Fix application naming (:ex_twitter -> :extwitter) in config.exs (#25, #26).
-
v0.5.0 Changes
๐ Changes
- โก๏ธ Updates for elixir v1.1 (#24).
-
v0.4.5 Changes
โจ Enhancements
- ๐ Support verifying credentials (#23).
- ExTwitter.verify_credentials
- ๐ Support verifying credentials (#23).
-
v0.4.4 Changes
โจ Enhancements
- ๐ Support authentication / authorization (#21).
- ExTwitter.request_token
- ExTwitter.authorize_url
- ExTwitter.authenticate_url
- ExTwitter.access_token
- ๐ Support authentication / authorization (#21).
-
v0.4.3 Changes
โจ Enhancements
- ๐ Support following and unfollowing.
- ExTwitter.follow
- ExTwitter.unfollow
- ๐ Support retweeting.
- ExTwitter.retweet
- ๐ Support following and unfollowing.
-
v0.4.2 Changes
โจ Enhancements
- ๐ Support posting tweets with image (#20).
- ExTwitter.update_with_media
- ๐ Support posting tweets with image (#20).
-
v0.4.1 Changes
โจ Enhancements
- Support specifying
user_id
as basic parameter in addition to the existingscreen_name
in the following functions.- ExTwitter.follower_ids
- ExTwitter.followers
- ExTwitter.friend_ids
- ExTwitter.friends
- ExTwitter.lists
- ExTwitter.user_lookup
- Support specifying
-
v0.4.0 Changes
๐ Changes
- Maps returned by the APIs will have atom keys instead of string keys.
- ๐ฆ Use poison as internal JSON parser.
- โก๏ธ Apply some benchmark related updates (#11, #13).
-
v0.3.0 Changes
โจ Enhancements
- Add
ExTwitter.follower_ids
,ExTwitter.friend_ids
. - โ Add
ExTwitter.RateLimitExceededError
for handling rate limit exceeded case.
๐ Changes
ExTwitter.followers
andExTwitter.friends
now returnExTwitter.Model.Cursor
instead ofExTwitter.Model.User
. Callcursor.items
for the returned cursor to fetch the list of users or ids.
- Add