Skip to content

Commit

Permalink
Release v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
whatyouhide committed Mar 22, 2017
1 parent 0e95afb commit 8d19daf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## v0.6.0

* Start using `Redix.ConnectionError` when returning errors instead of just an
atom. This is a breaking change since now `Redix.command/2` and the other
functions return `{:error, %Redix.ConnectionError{reason: reason}}` instead of
`{:error, reason}`. If you're matching on specific error reasons, make sure to
update your code; if you're formatting errors through `Redix.format_error/1`,
you can now use `Exception.message/1` on the `Redix.ConnectionError` structs.

## v0.5.2

* Fix some TCP error handling during the connection setup phase.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Redix.Mixfile do

@repo_url "https://github.com/whatyouhide/redix"

@version "0.5.1"
@version "0.6.0"

def project() do
[app: :redix,
Expand Down

0 comments on commit 8d19daf

Please sign in to comment.