diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index c4e84e0..7a7ee56 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.19.1" +ARG VARIANT="1.19.2" 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 3f98dfa..001d7e1 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.19.1" + VARIANT: "1.19.2" # 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 9ace962..e002ab7 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1,2 +1,2 @@ -elixir 1.19.1-otp-28 +elixir 1.19.2-otp-28 erlang 28.1.1 diff --git a/Dockerfile b/Dockerfile index e361bcb..d3e73fe 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.19.1 +ARG ELIXIR_VERSION=1.19.2 ARG OTP_VERSION=28.1.1 ARG DEBIAN_VERSION=bullseye-20251020-slim diff --git a/README.md b/README.md index 90f8c00..1ac23c5 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.19.1 or newer +- Elixir 1.19.2 or newer - Erlang 28.1.1 or newer diff --git a/mix.exs b/mix.exs index 2b6ad67..5d0d9ba 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule ZeroPhoenix.Mixfile do [ app: :zero_phoenix, version: "3.6.0", - elixir: "~> 1.19.1", + elixir: "~> 1.19.2", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, aliases: aliases(),