Skip to content

Commit

Permalink
Changing versions for libraries to versions that actually work
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigodealer authored and doomspork committed Apr 18, 2017
1 parent 4f96486 commit aaaa324
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ To get started we need to include Ecto and a database adapter in our project's `

```elixir
defp deps do
[{:ecto, "~> 1.0"},
{:postgrex, ">= 0.0.0"}]
[{:ecto, "~> 2.1.4"},
{:postgrex, ">= 0.13.2"}]
end
```

Expand Down
4 changes: 2 additions & 2 deletions lessons/specifics/plug.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ The first thing to do is add both Plug and a web server (we'll be using Cowboy)

```elixir
defp deps do
[{:cowboy, "~> 1.0.0"},
{:plug, "~> 1.0"}]
[{:cowboy, "~> 1.1.2"},
{:plug, "~> 1.3.4"}]
end
```

Expand Down
4 changes: 2 additions & 2 deletions pt/lessons/specifics/ecto.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ do README do Ecto. Para o nosso exemplo iremos usar o PostgreSQL:

```elixir
defp deps do
[{:ecto, "~> 1.0"},
{:postgrex, ">= 0.0.0"}]
[{:ecto, "~> 2.1.4"},
{:postgrex, ">= 0.13.2"}]
end
```

Expand Down
4 changes: 2 additions & 2 deletions pt/lessons/specifics/plug.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ A instalação é uma brisa se você utilizar mix. Para instalar Plug nós preci

```elixir
defp deps do
[{:cowboy, "~> 1.0.0"},
{:plug, "~> 1.0"}]
[{:cowboy, "~> 1.1.2"},
{:plug, "~> 1.3.4"}]
end
```

Expand Down

0 comments on commit aaaa324

Please sign in to comment.