Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
erlang 25.3.2
elixir 1.14.4-otp-25
erlang 26.0
elixir 1.14.5-otp-26
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ The purpose of this project is to implement an application where fans can commen

## Software requirements

- Elixir 1.14.4 or newer
- Elixir 1.14.5 or newer

- Erlang 25.3.2 or newer
- Erlang 26.0 or newer

- Phoenix 1.6.16 or newer

- PostgreSQL 14.7 or newer
- PostgreSQL 15.3 or newer

Note: This tutorial was updated on macOS 13.3.1.
Note: This tutorial was updated on macOS 13.4.

## Communication

Expand Down
8 changes: 4 additions & 4 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Flix.MixProject do
[
app: :flix,
version: "0.1.0",
elixir: "~> 1.14.4",
elixir: "~> 1.14.5",
elixirc_paths: elixirc_paths(Mix.env()),
compilers: [:gettext] ++ Mix.compilers(),
start_permanent: Mix.env() == :prod,
Expand Down Expand Up @@ -37,9 +37,9 @@ defmodule Flix.MixProject do
defp deps do
[
{:phoenix, "~> 1.6.16"},
{:phoenix_ecto, "~> 4.4"},
{:ecto_sql, "~> 3.7.1"},
{:postgrex, "~> 0.15.9"},
{:phoenix_ecto, "~> 4.4.2"},
{:ecto_sql, "~> 3.10.1"},
{:postgrex, "~> 0.17.1"},
{:phoenix_html, "~> 3.0"},
{:phoenix_live_reload, "~> 1.3.3", only: :dev},
{:phoenix_live_view, "~> 0.17.5"},
Expand Down
Loading