From 41332560e3862b2a286520cc9a1ee5beaa39816a Mon Sep 17 00:00:00 2001 From: Conrad Taylor Date: Thu, 11 Jun 2026 00:08:14 -0700 Subject: [PATCH] Update to Elixir 1.20.1 and refresh Hex packages. --- .devcontainer/Dockerfile | 2 +- .devcontainer/compose.yml | 2 +- .tool-versions | 2 +- Dockerfile | 2 +- README.md | 2 +- mix.exs | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 7129938..95aecd4 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 # Update the VARIANT arg in docker-compose.yml to pick an Elixir version: 1.9, 1.10, 1.10.4 -ARG VARIANT="1.20.0" +ARG VARIANT="1.20.1" FROM elixir:${VARIANT} # This Dockerfile adds a non-root user with sudo access. Update the “remoteUser” property in diff --git a/.devcontainer/compose.yml b/.devcontainer/compose.yml index 8776c06..14e9ae7 100644 --- a/.devcontainer/compose.yml +++ b/.devcontainer/compose.yml @@ -5,7 +5,7 @@ services: dockerfile: Dockerfile args: # Elixir Version: 1.9, 1.10, 1.10.4, ... - VARIANT: "1.20.0" + VARIANT: "1.20.1" # Phoenix Version: 1.4.17, 1.5.4, ... PHOENIX_VERSION: "1.7.21" # Node Version: 12, 14, ... diff --git a/.tool-versions b/.tool-versions index 2672640..7fd7c27 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -elixir 1.20.0-otp-29 +elixir 1.20.1-otp-29 erlang 29.0.1 diff --git a/Dockerfile b/Dockerfile index 58f4321..75e8f4c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,7 +13,7 @@ # - https://pkgs.org/ - resource for finding needed packages # - Ex: hexpm/elixir:1.15.4-erlang-26.0.2-debian-bullseye-20230612-slim # -ARG ELIXIR_VERSION=1.20.0 +ARG ELIXIR_VERSION=1.20.1 ARG OTP_VERSION=29.0.1 ARG DEBIAN_VERSION=bullseye-20260518-slim diff --git a/README.md b/README.md index 70a6f65..bf91dd6 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ The purpose of this example is to provide details as to how one would go about u ## Software requirements -- Elixir 1.20.0 or newer +- Elixir 1.20.1 or newer - Erlang 29.0.1 or newer diff --git a/mix.exs b/mix.exs index 9cb621b..4fe900e 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule ZeroPhoenix.Mixfile do [ app: :zero_phoenix, version: "3.6.0", - elixir: "~> 1.20.0", + elixir: "~> 1.20.1", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(),