diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f3838b..f859635 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Add missing tests for existence check - Update time spent calculation for EventSource block - Remove support for system event tracing (Updated the wiki to create wrapper for system event tracing) +- Dialyzer enhancements +- Test and documentation enhancements ## [1.2.X] - 2018.02.24 diff --git a/README.md b/README.md index 93089db..22ca082 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ The package can be installed by adding `event_bus` to your list of dependencies ```elixir def deps do - [{:event_bus, "~> 1.3.7"}] + [{:event_bus, "~> 1.3.8"}] end ``` diff --git a/mix.exs b/mix.exs index 5883adb..d5af581 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule EventBus.Mixfile do def project do [ app: :event_bus, - version: "1.3.7", + version: "1.3.8", elixir: "~> 1.5", elixirc_paths: elixirc_paths(Mix.env()), build_embedded: Mix.env() == :prod,