diff --git a/README.markdown b/README.markdown index 3d48b28..58b393e 100644 --- a/README.markdown +++ b/README.markdown @@ -15,6 +15,7 @@ Add this to your application's `shard.yml`: dependencies: twitter-crystal: github: sferik/twitter-crystal + version: ~> 0.1.0 ``` In your terminal run: @@ -110,3 +111,8 @@ If you want to call the API directly, refer to the [API reference](https://dev.t ### Pull Requests are very welcome! The goal of the project is to have almost the same interfaces(methods) as those of https://github.com/sferik/twitter and there are a lot of things need to be done. Pull Requests are welcome :) + +## Contrinutors + +- [sferik](https://github.com/sferik) Erik Michaels-Ober - creator +- [kenta-s](https://github.com/kenta-s) Kenta Shirai - maintainer diff --git a/src/twitter/version.cr b/src/twitter/version.cr index 17c9e09..b412340 100644 --- a/src/twitter/version.cr +++ b/src/twitter/version.cr @@ -1,8 +1,8 @@ module Twitter module Version Major = 0 - Minor = 0 - Patch = 1 + Minor = 1 + Patch = 0 def self.to_s [Major, Minor, Patch].join('.')