Skip to content

Commit

Permalink
Specify v0.2 in README
Browse files Browse the repository at this point in the history
  • Loading branch information
slashdotdash committed Oct 2, 2017
1 parent 5622537 commit 81643c3
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ The package can be installed from hex as follows.

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

2. Include `:eventstore` in the list of applications to start.
2. Include `:eventstore` in the list of applications to start.

For **Elixir 1.4**, add `:eventstore` to the extra applications list in `mix.exs`:

Expand All @@ -29,11 +29,10 @@ The package can be installed from hex as follows.
:logger,
:eventstore,
],
# ...
]
end
```

For **Elixir 1.3** and before, add `:eventstore` to the applications list in `mix.exs`:

```elixir
Expand All @@ -43,11 +42,10 @@ The package can be installed from hex as follows.
:logger,
:eventstore,
],
# ...
]
end
```

3. Configure Commanded to use the event store adapter:

```elixir
Expand Down

0 comments on commit 81643c3

Please sign in to comment.