Packages

ExRated, the OTP GenServer with the naughty name that allows you to rate-limit calls to any service that requires it. For example, rate-limit calls to your favorite API which requires no more than `limit` API calls within a `scale` milliseconds time window.

Current section

18 Versions

Jump to

Compare versions

3 files changed
+9 additions
-5 deletions
  @@ -113,7 +113,7 @@ Temporarily add `Benchwarmer` to your dependencies in `mix.exs` as shown below a
113 113 ```
114 114 defp deps do
115 115 [
116 - {:ex2ms, "~> 1.4.0"},
116 + {:ex2ms, "~> 1.5"},
117 117 {:benchwarmer, "~> 0.0.2"}
118 118 ]
119 119 end
  @@ -129,6 +129,10 @@ iex> Benchwarmer.benchmark fn -> {:ok, _} = ExRated.check_rate("my-bucket", 1000
129 129
130 130 ## Changes
131 131
132 + ### v1.3.1
133 +
134 + - Update `ex2ms` to v1.5
135 +
132 136 ### v1.3.0
133 137
134 138 - Fix compilation warnings. [@walkr]
  @@ -14,5 +14,5 @@
14 14 [[{<<"app">>,<<"ex2ms">>},
15 15 {<<"name">>,<<"ex2ms">>},
16 16 {<<"optional">>,false},
17 - {<<"requirement">>,<<"~> 1.4.0">>}]]}.
18 - {<<"version">>,<<"1.3.0">>}.
17 + {<<"requirement">>,<<"~> 1.5">>}]]}.
18 + {<<"version">>,<<"1.3.1">>}.
  @@ -3,7 +3,7 @@ defmodule ExRated.Mixfile do
3 3
4 4 def project do
5 5 [app: :ex_rated,
6 - version: "1.3.0",
6 + version: "1.3.1",
7 7 elixir: "~> 1.2",
8 8 description: description(),
9 9 package: package(),
  @@ -37,7 +37,7 @@ defmodule ExRated.Mixfile do
37 37 #
38 38 # Type `mix help deps` for more examples and options
39 39 defp deps do
40 - [{:ex2ms, "~> 1.4.0"},
40 + [{:ex2ms, "~> 1.5"},
41 41 {:ex_doc, "~> 0.11", only: :dev}]
42 42 end