Skip to content

Commit

Permalink
OTP 27.2 exploration
Browse files Browse the repository at this point in the history
  • Loading branch information
swiffer committed Dec 14, 2024
1 parent 38cca3c commit 98370c8
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-elixir-and-cache-deps/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
otp-version:
description: "OTP version"
required: false
default: "26"
default: "27"
cache-name-deps:
description: "Cache name for dependencies"
required: true
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM elixir:1.17.3-otp-26 AS builder
FROM elixir:1.17.3-otp-27 AS builder

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

Expand Down
4 changes: 2 additions & 2 deletions nix/flake-modules/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
{
perSystem = { lib, pkgs, system, ... }:
let
elixir = pkgs.beam.packages.erlang_26.elixir_1_17;
beamPackages = pkgs.beam.packagesWith pkgs.beam.interpreters.erlang_26;
elixir = pkgs.beam.packages.erlang_27.elixir_1_17;
beamPackages = pkgs.beam.packagesWith pkgs.beam.interpreters.erlang_27;

src = ../..;
version = builtins.readFile "${src}/VERSION";
Expand Down
2 changes: 1 addition & 1 deletion website/docs/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ sidebar_label: Development and Contributing

## Requirements

- **Elixir** >= 1.17.3-otp-26
- **Elixir** >= 1.17.3-otp-27
- **Postgres** >= 17
- An **MQTT broker** e.g. mosquitto (_optional_)
- **NodeJS** >= 20.15.0
Expand Down

0 comments on commit 98370c8

Please sign in to comment.