Skip to content

Commit

Permalink
Merge pull request #359 from akira/akira/release_0.13
Browse files Browse the repository at this point in the history
Bump release to 0.13.0
  • Loading branch information
akira authored Jan 21, 2019
2 parents 1ef1394 + 04f8004 commit 8ae534f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 5 deletions.
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,27 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]


## [0.13.0] - 2019-01-21

### Removed
- Due to library dependencies, support for Elixir 1.3, Elixir 1.4 and OTP 18.0, OTP 19.0 has been removed.
- Redix version older than 0.8.1 is no longer supported.
- Config options `reconnect_on_sleep` and `redis_timeout` are now removed.

### Added
- Support for Redix >= 0.8.1 by @ryansch and @ananthakumaran.
- Configuration for Mix Format by @chulkilee.
- Use :microsecond vs :microseconds by @KalvinHom.

## Changed
- Redis options are now passed in via `redis_options` by @ryansch and @ananthakumaran.
- Removed redix_sentinel dependency, now supported by new Redix version by @ananthakumaran.

## [0.12.2] - 2018-10-14

### Fixed
- Don't assume redis_opts is enumerable by @ryansch
- Don't assume redis_opts is enumerable by @ryansch.

### Added
- Add {:system, VAR} format support for more config params by @LysanderGG
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Add exq to your mix.exs deps (replace version with the latest hex.pm package ver
defp deps do
[
# ... other deps
{:exq, "~> 0.12.2"}
{:exq, "~> 0.13.0"}
]
end
```
Expand Down
4 changes: 1 addition & 3 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,13 @@ defmodule Exq.Mixfile do
def project do
[
app: :exq,
version: "0.12.2",
version: "0.13.0",
elixir: "~> 1.6",
elixirc_paths: ["lib"],
package: [
maintainers: [
"Alex Kira",
"zhongwencool",
"Denis Tataurov",
"Justin McNally",
"Anantha Kumaran"
],
links: %{"GitHub" => "https://github.com/akira/exq"},
Expand Down

0 comments on commit 8ae534f

Please sign in to comment.