Skip to content

Commit 149a7d3

Browse files
committed
Update system requirements.
1 parent f00945d commit 149a7d3

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# syntax=docker/dockerfile:1
22

33
# Update the VARIANT arg in docker-compose.yml to pick an Elixir version: 1.9, 1.10, 1.10.4
4-
ARG VARIANT="1.19.0"
4+
ARG VARIANT="1.19.1"
55
FROM elixir:${VARIANT}
66

77
# This Dockerfile adds a non-root user with sudo access. Update the “remoteUser” property in

.devcontainer/compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ services:
55
dockerfile: Dockerfile
66
args:
77
# Elixir Version: 1.9, 1.10, 1.10.4, ...
8-
VARIANT: "1.19.0"
8+
VARIANT: "1.19.1"
99
# Phoenix Version: 1.4.17, 1.5.4, ...
1010
PHOENIX_VERSION: "1.7.21"
1111
# Node Version: 12, 14, ...

.tool-versions

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.19.0-otp-28
2-
erlang 28.1
1+
elixir 1.19.1-otp-28
2+
erlang 28.1.1

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ The purpose of this example is to provide details as to how one would go about u
66

77
## Software requirements
88

9-
- Elixir 1.19.0 or newer
9+
- Elixir 1.19.1 or newer
1010

11-
- Erlang 28.1 or newer
11+
- Erlang 28.1.1 or newer
1212

1313
- Phoenix 1.7.21 or newer
1414

15-
- PostgreSQL 17.5 or newer
15+
- PostgreSQL 18.0 or newer
1616

17-
Note: This tutorial was updated on macOS 26 (Tahoe).
17+
Note: This tutorial was updated on macOS 26.0.1 (Tahoe).
1818

1919
## Communication
2020

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule ZeroPhoenix.Mixfile do
55
[
66
app: :zero_phoenix,
77
version: "3.6.0",
8-
elixir: "~> 1.19.0",
8+
elixir: "~> 1.19.1",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,
1111
aliases: aliases(),

0 commit comments

Comments
 (0)