Skip to content

Commit 9b10353

Browse files
authored
Update to Elixir 1.19.3. (#287)
1 parent 178356e commit 9b10353

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
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.2"
4+
ARG VARIANT="1.19.3"
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.2"
8+
VARIANT: "1.19.3"
99
# Phoenix Version: 1.4.17, 1.5.4, ...
1010
PHOENIX_VERSION: "1.7.21"
1111
# Node Version: 12, 14, ...

.tool-versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.19.2-otp-28
1+
elixir 1.19.3-otp-28
22
erlang 28.1.1

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# - https://pkgs.org/ - resource for finding needed packages
1414
# - Ex: hexpm/elixir:1.15.4-erlang-26.0.2-debian-bullseye-20230612-slim
1515
#
16-
ARG ELIXIR_VERSION=1.19.2
16+
ARG ELIXIR_VERSION=1.19.3
1717
ARG OTP_VERSION=28.1.1
1818
ARG DEBIAN_VERSION=bullseye-20251020-slim
1919

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ 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.2 or newer
9+
- Elixir 1.19.3 or newer
1010

1111
- Erlang 28.1.1 or newer
1212

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.2",
8+
elixir: "~> 1.19.3",
99
elixirc_paths: elixirc_paths(Mix.env()),
1010
start_permanent: Mix.env() == :prod,
1111
aliases: aliases(),

0 commit comments

Comments
 (0)