Skip to content

Commit 17f39db

Browse files
authored
Tweak version references in README. (#196)
Also: Since Elixir 1.3 is no longer supported, remove instructions for adding deps to applications.
1 parent 7fccf51 commit 17f39db

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,10 @@ Add `sqlite_ecto2` as a dependency in your `mix.exs` file.
103103

104104
```elixir
105105
def deps do
106-
[{:sqlite_ecto2, "~> 2.0"}]
106+
[{:sqlite_ecto2, "~> 2.2"}]
107107
end
108108
```
109109

110-
If you are using Elixir 1.3, you should also update your applications list to include `sqlite_ecto2` and `ecto`:
111-
112-
```elixir
113-
def application do
114-
[applications: [:logger, :sqlite_ecto2, :ecto]]
115-
end
116-
```
117-
118-
With Elixir 1.4+, you can do this or rely on application inference.
119-
120110
To use the adapter in your repo:
121111

122112
```elixir

0 commit comments

Comments
 (0)