Skip to content

Commit

Permalink
v0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
fhunleth committed Mar 28, 2020
1 parent 3a1d73e commit c69afae
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
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

* Bug fixes
* Fix the `:delay_to_sigkill` option so that it takes milliseconds as
documented and remove the max delay check. Previously, the code used
microseconds for the delay despite the documentation. If you were using
`:delay_to_sigkill`, this is a backwards incompatible change and your delays
will be 1000x longer. Thanks to Almir for reporting this issue.

## v0.5.1

* New features
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Add `muontrap` to your project's `mix.exs` dependency list:
```elixir
def deps do
[
{:muontrap, "~> 0.5.0"}
{:muontrap, "~> 0.6.0"}
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule MuonTrap.MixProject do
use Mix.Project

@version "0.5.1"
@version "0.6.0"
@source_url "https://github.com/fhunleth/muontrap"

def project do
Expand Down

0 comments on commit c69afae

Please sign in to comment.