diff --git a/CHANGELOG.md b/CHANGELOG.md index 15e2eac..817ede5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,18 @@ # Changelog +## v0.7.0 + + * Added the `Fluxter.start_link/1` callback to support runtime configuration. + +__Deprecations:__ + + * Passing child specification options to `Fluxter.child_spec/1` is deprecated. + ## v0.6.1 * Fixed a bug in the `Fluxter.child_spec/1` callback. ## v0.6.0 - * Added a `Fluxter.child_spec/1` callback. + * Added the `Fluxter.child_spec/1` callback. * Started flushing counters synchronously when calling `Fluxter.flush_counter/1`. diff --git a/lib/fluxter.ex b/lib/fluxter.ex index f7245d3..af785c3 100644 --- a/lib/fluxter.ex +++ b/lib/fluxter.ex @@ -297,7 +297,7 @@ defmodule Fluxter do {child_options, options} = Keyword.split(options, [:id, :start, :restart, :shutdown, :type, :modules]) if child_options != [] do - IO.warn "passing child specification fields is deprecated" + IO.warn "passing child specification options is deprecated" end Supervisor.Spec.supervisor(__MODULE__, [options], child_options) end diff --git a/mix.exs b/mix.exs index de87d67..57db59c 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Fluxter.Mixfile do def project() do [app: :fluxter, name: "Fluxter", - version: "0.6.1", + version: "0.7.0", elixir: "~> 1.2", package: package(), description: desc(),