File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed
Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66## [ Unreleased]
77
88
9+ ## [ 0.13.1] - 2019-02-24
10+
11+ ### Added
12+ - Support for configurable JSON parser, with Jason as default by @chulkilee .
13+ - Remove redundant time output for worker log by @akira .
14+ - Fix deprecated time warning by @gvl .
15+
916## [ 0.13.0] - 2019-01-21
1017
1118### Removed
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ Add exq to your mix.exs deps (replace version with the latest hex.pm package ver
6666 defp deps do
6767 [
6868 # ... other deps
69- {:exq , " ~> 0.13.0 " }
69+ {:exq , " ~> 0.13.1 " }
7070 ]
7171 end
7272```
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ defmodule Exq.Mixfile do
44 def project do
55 [
66 app: :exq ,
7- version: "0.13.0 " ,
7+ version: "0.13.1 " ,
88 elixir: "~> 1.6" ,
99 elixirc_paths: [ "lib" ] ,
1010 package: [
You can’t perform that action at this time.
0 commit comments