Skip to content

Commit

Permalink
Fix latest commanded_eventstore_adapter version
Browse files Browse the repository at this point in the history
Newcomers might be surprised that version mentioned in README is not compatible with latest commanded ;)
`0.3` breaks with commanded `0.17` with runtime exception:
```
** (UndefinedFunctionError) function Commanded.EventStore.Adapters.EventStore.subscribe/1 is undefined or private
    (commanded_eventstore_adapter) Commanded.EventStore.Adapters.EventStore.subscribe("1")
    (commanded) lib/commanded/registration/registration.ex:149: Commanded.Aggregates.Aggregate.handle_cast/2
    (stdlib) gen_server.erl:637: :gen_server.try_dispatch/4
    (stdlib) gen_server.erl:711: :gen_server.handle_msg/6
    (stdlib) proc_lib.erl:249: :proc_lib.init_p_do_apply/3
Last message: {:"$gen_cast", :subscribe_to_events}
```
  • Loading branch information
scoiatael authored Oct 15, 2018
1 parent addcffd commit 1cd0546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The package can be installed from hex as follows.

```elixir
def deps do
[{:commanded_eventstore_adapter, "~> 0.3"}]
[{:commanded_eventstore_adapter, "~> 0.4"}]
end
```

Expand Down

0 comments on commit 1cd0546

Please sign in to comment.