File tree Expand file tree Collapse file tree 3 files changed +21
-2
lines changed
Expand file tree Collapse file tree 3 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,25 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55
66## [ Unreleased]
77
8+ ## [ 0.15.0] - 2021-07-19
9+
10+ ### Added
11+ - Add dequeue behavior for ability to implement things like concurrency control #421 by @ananthakumaran
12+ - Api Module Documentation #440 by @kevin-j-m
13+
14+ ### Changed
15+ - Use Lua script to schedule job for better performance and memory leak fix #427 by @ananthakumaran
16+ - Logging fixes #429 by @rraub
17+ - Relax poison dependency #431 by @ananthakumaran
18+ - Use github actions instead of Travis #433 by @ananthakumaran
19+ - Use the same same module conversion logic in mock as well #434 by @ananthakumaran
20+ - use Task instead of spawn_link for starting workers #436 by @mitchellhenke
21+
22+ ### Fixed
23+ - re-enqueue unfinished jobs to the begining of queue on restart #424 by @ananthakumaran
24+ - Fix for sentinel 0.11.0+ #428 by @ananthakumaran
25+ - Fixes for generated HTML docs by #442 @kianmeng
26+
827
928## [ 0.14.0] - 2020-08-08
1029
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Add `:exq` to your `mix.exs` deps (replace version with the latest hex.pm packag
7272defp deps do
7373 [
7474 # ... other deps
75- {:exq , " ~> 0.14 .0" }
75+ {:exq , " ~> 0.15 .0" }
7676 ]
7777end
7878```
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ defmodule Exq.Mixfile do
22 use Mix.Project
33
44 @ source_url "https://github.com/akira/exq"
5- @ version "0.14 .0"
5+ @ version "0.15 .0"
66
77 def project do
88 [
You can’t perform that action at this time.
0 commit comments