diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a2a96..286a0bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.16] + +### Changed + +- Bump max supported OTP version: 25.3 -> 26.0.2 + ## [0.1.15] ### Changed diff --git a/justfile b/justfile index 61d5626..a1d8147 100644 --- a/justfile +++ b/justfile @@ -10,7 +10,7 @@ set dotenv-load # VARIABLES # default_cpu_arch := "x86_64" -newest_supported_otp := "25.3" +newest_supported_otp := "26.0.2" image_name := "arcanemachine/phoenix-todo-list" # colors diff --git a/mix.exs b/mix.exs index a1c571b..6c64b2f 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule TodoList.MixProject do def project do [ app: :todo_list, - version: "0.1.15", + version: "0.1.16", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod,