Skip to content

Commit

Permalink
Set version to 0.0.1 and update README to reflect completed API calls
Browse files Browse the repository at this point in the history
  • Loading branch information
plackemacher committed Jan 21, 2017
1 parent a588521 commit f1028c2
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,15 @@

Simple Elixir wrapper for the [Twitch V5 API](https://dev.twitch.tv/docs/).

## Installation
This is still a work in progress but some aspects do work. **Use at your own risk.**

**Not yet published!**
## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `ex_twitch` to your list of dependencies in `mix.exs`:
The package can be installed by adding `ex_twitch` to your list of dependencies in `mix.exs`:

```elixir
def deps do
[{:ex_twitch, "~> 0.1.0"}]
[{:ex_twitch, "~> 0.0.1"}]
end
```

Expand All @@ -38,8 +37,8 @@ you've seen that Twitch has added another API, feel free to do a pull request to
- [ ] Delete Reaction to a Feed Comment
- [Channels](https://dev.twitch.tv/docs/v5/reference/channels/)
- [x] Get Channel
- [ ] Get Channel by ID
- [ ] Update Channel
- [x] Get Channel by ID
- [x] Update Channel
- [ ] Get Channel Editors
- [ ] Get Channel Followers
- [ ] Get Channel Teams
Expand All @@ -49,7 +48,7 @@ you've seen that Twitch has added another API, feel free to do a pull request to
- [ ] Start Channel Commercial
- [ ] Reset Channel Stream Key
- [Chat](https://dev.twitch.tv/docs/v5/reference/chat/)
- [ ] Get Chat Badges by Channel
- [x] Get Chat Badges by Channel
- [ ] Get Chat Emoticons by Set
- [ ] Get All Chat Emoticons
- [Games](https://dev.twitch.tv/docs/v5/reference/games/)
Expand All @@ -72,9 +71,10 @@ you've seen that Twitch has added another API, feel free to do a pull request to
- [Users](https://dev.twitch.tv/docs/v5/reference/users/)
- [x] Get User
- [x] Get User by ID
- [x] [Get User by User Name](https://dev.twitch.tv/docs/v5/guides/using-the-twitch-api/#translating-from-user-names-to-user-ids)
- [x] Get User Emotes
- [ ] Check User Subscription by Channel
- [ ] Get User Follows
- [x] Check User Subscription by Channel
- [x] Get User Follows
- [ ] Check User Follows by Channel
- [ ] Follow Channel
- [ ] Unfollow Channel
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ defmodule ExTwitch.Mixfile do
def project do
[
app: :ex_twitch,
version: "0.1.0",
version: "0.0.1",
elixir: "~> 1.3",
name: "ExTwitch",
description: @description,
Expand Down

0 comments on commit f1028c2

Please sign in to comment.