Skip to content

Commit

Permalink
Bump version to 1.1.0 and update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
grempe committed Dec 16, 2015
1 parent 6050b09 commit 47a4f4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ You can use ExRated in your projects in two steps:

```elixir
def deps do
[{:ex_rated, "~> 0.0.6"}]
[{:ex_rated, "~> 1.1.0"}]
end
```

Expand Down Expand Up @@ -125,6 +125,11 @@ iex> Benchwarmer.benchmark fn -> {:ok, _} = ExRated.check_rate("my-bucket", 1000

## Changes

### v1.1.0

- Added `delete_bucket/1` function. Takes a bucket name and removes it now instead of waiting for pruning (Nick Sanders).
- Added `inspect_bucket/3` function. Returns metadata about buckets (Nick Sanders).

### v1.0.0

- [BREAKING] Return {:error, limit} instead of {:fail, limit} to be a bit more idiomatic. Requires semver major version number change.
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ defmodule ExRated.Mixfile do

def project do
[app: :ex_rated,
version: "1.0.0",
version: "1.1.0",
elixir: "~> 1.0",
description: description,
package: package,
Expand Down Expand Up @@ -43,7 +43,7 @@ defmodule ExRated.Mixfile do
For example, rate-limit calls to your favorite API which requires no more
than `limit` API calls within a `scale` milliseconds time window. You can enforce
limits for windows as narrow as milliseconds, or as broad as 25 hours.
limits for windows as narrow as milliseconds, or as broad as you like.
"""
end

Expand Down

0 comments on commit 47a4f4b

Please sign in to comment.