Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lexmag committed Oct 10, 2017
1 parent 777677e commit 2cb0943
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`.
2 changes: 1 addition & 1 deletion lib/fluxter.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit 2cb0943

Please sign in to comment.