Skip to content

Commit bd3afb1

Browse files
authored
Update to Elixir 1.20.1 and refresh Hex packages. (#316)
1 parent 42a7f02 commit bd3afb1

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

.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.20.0"
4+
ARG VARIANT="1.20.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.20.0"
8+
VARIANT: "1.20.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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
elixir 1.20.0-otp-29
1+
elixir 1.20.1-otp-29
22
erlang 29.0.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.20.0
16+
ARG ELIXIR_VERSION=1.20.1
1717
ARG OTP_VERSION=29.0.1
1818
ARG DEBIAN_VERSION=bullseye-20260518-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.20.0 or newer
9+
- Elixir 1.20.1 or newer
1010

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

0 commit comments

Comments
 (0)