Skip to content

Commit

Permalink
Changing extra options to keyword list
Browse files Browse the repository at this point in the history
  • Loading branch information
Ygor Castor committed Jul 27, 2020
1 parent bc80907 commit 7f9494d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/commanded/event_store/adapter.ex
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defmodule Commanded.EventStore.Adapter do
@type subscriber :: pid
@type source_uuid :: String.t()
@type error :: term
@type options :: map
@type options :: Keyword.t()

@doc """
Return a child spec defining all processes required by the event store.
Expand Down Expand Up @@ -86,7 +86,7 @@ defmodule Commanded.EventStore.Adapter do
subscription_name,
subscriber,
start_from,
options | %{}
options | []
) ::
{:ok, subscription}
| {:error, :subscription_already_exists}
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 Commanded.Mixfile do
use Mix.Project

@version "1.1.2"
@version "1.2.0"

def project do
[
Expand Down

0 comments on commit 7f9494d

Please sign in to comment.