Skip to content

Commit

Permalink
Update for version 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane Kilkelly committed Oct 12, 2018
1 parent 15459d6 commit 87bfaeb
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

### Changed

- Raise an error if `expiry_ms` is not configured explicitely
- Raise an error if `expiry_ms` is not configured explicitly
- Update the `redix` dependency to `~> 0.8`


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ can be installed by adding `hammer_backend_redis` to your list of dependencies i

```elixir
def deps do
[{:hammer_backend_redis, "~> 5.0"},
{:hammer, "~> 5.0"}]
[{:hammer_backend_redis, "~> 6.0"},
{:hammer, "~> 6.0"}]
end
```

Expand Down
4 changes: 2 additions & 2 deletions doc_src/Frontpage.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ the `hammer_backend_redis` dependency:

```elixir
def deps do
[{:hammer_backend_redis, "~> 5.0"},
{:hammer, "~> 5.0"}]
[{:hammer_backend_redis, "~> 6.0"},
{:hammer, "~> 6.0"}]
end
```

Expand Down
2 changes: 1 addition & 1 deletion lib/hammer_backend_redis.ex
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ defmodule Hammer.Backend.Redis do
Options are:
- `expiry_ms`: Expiry time of buckets in milliseconds,
used to set TTL on Redis keys
used to set TTL on Redis keys. This configuration is mandatory.
- `redix_config`: Keyword list of options to the `Redix` redis client,
also aliased to `redis_config`
"""
Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defmodule HammerBackendRedis.Mixfile do
],
source_url: "https://github.com/ExHammer/hammer-backend-redis",
homepage_url: "https://github.com/ExHammer/hammer-backend-redis",
version: "6.0.0-rc1",
version: "6.0.0",
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -49,7 +49,7 @@ defmodule HammerBackendRedis.Mixfile do
defp deps do
[
{:redix, "~> 0.8"},
{:hammer, "6.0.0-rc1"},
{:hammer, "6.0.0"},
{:mock, "~> 0.2.0", only: :test},
{:ex_doc, "~> 0.16", only: :dev},
{:dialyxir, "~> 0.5", only: [:dev], runtime: false},
Expand Down

0 comments on commit 87bfaeb

Please sign in to comment.