diff --git a/README.md b/README.md index 566069f..055222f 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,8 @@ Version `1.1.1` of the FOAAS API is supported. ```crystal require "foaas_client" +client = Foaas::Client.new + client.rtfm("Me") # => Read the fucking manual! - Me @@ -55,4 +57,4 @@ Will respond to the following `accept_tyle` values: ## Contributors -- [mamantoha](https://github.com/mamantoha) Anton Maminov - creator, maintainer +* [mamantoha](https://github.com/mamantoha) Anton Maminov - creator, maintainer diff --git a/shard.yml b/shard.yml index 0911c2e..4bb9acd 100644 --- a/shard.yml +++ b/shard.yml @@ -1,5 +1,5 @@ name: foaas_client -version: 0.1.0 +version: 0.2.0 description: | A Crystal client for FOAAS - a modern, RESTful, scalable solution to the common problem of telling people to fuck off diff --git a/src/foaas_client/version.cr b/src/foaas_client/version.cr index 73664f5..4e726fe 100644 --- a/src/foaas_client/version.cr +++ b/src/foaas_client/version.cr @@ -1,5 +1,5 @@ module Foaas class Client - VERSION = "0.1.0" + VERSION = "0.2.0" end end