Skip to content

Commit

Permalink
Update README + Bump version to 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lpgauth committed Aug 10, 2015
1 parent bcf4b05 commit 3930664
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ terminate(_State) -> ok.
#### Starting client pool

```erlang
ok = shackle_pool:start(my_pool, my_client).
shackle_pool:start(pool_name, client, [{pool_size, 32}]).
```

#### Pool Options
Expand Down Expand Up @@ -198,10 +198,10 @@ ok = shackle_pool:start(my_pool, my_client).
#### Calling/Casting client

```erlang
1> shackle:call(my_pool, {get, <<"test">>}).
1> shackle:call(pool_name, {get, <<"test">>}).
{ok, <<"bar">>}

2> {ok, ReqId} = shackle:cast(my_pool, {get, <<"foo">>}).
2> {ok, ReqId} = shackle:cast(pool_name, {get, <<"foo">>}).
{ok, {anchor, anchor_client, #Ref<0.0.0.2407>}}

3> shackle:receive_response(ReqId).
Expand Down
2 changes: 1 addition & 1 deletion src/shackle.app.src
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{application, shackle, [
{description, "client framework"},
{vsn, "0.1.2"},
{vsn, "0.1.3"},
{registered, []},
{applications, [
kernel,
Expand Down

0 comments on commit 3930664

Please sign in to comment.