24 lines
885 B
Diff
24 lines
885 B
Diff
|
From 5086e283bda7f69ce05219a72787c4e2a5ec6f2e Mon Sep 17 00:00:00 2001
|
||
|
From: Volker Schlecht <47375452+VlkrS@users.noreply.github.com>
|
||
|
Date: Thu, 12 Dec 2024 19:30:04 +0100
|
||
|
Subject: [PATCH] Allow building CLI with elixir 1.18.x
|
||
|
|
||
|
Tested with elixir 1.18.0-rc0
|
||
|
---
|
||
|
deps/rabbitmq_cli/mix.exs | 2 +-
|
||
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
||
|
|
||
|
Index: rabbitmq-server-3.13.7/deps/rabbitmq_cli/mix.exs
|
||
|
===================================================================
|
||
|
--- rabbitmq-server-3.13.7.orig/deps/rabbitmq_cli/mix.exs
|
||
|
+++ rabbitmq-server-3.13.7/deps/rabbitmq_cli/mix.exs
|
||
|
@@ -11,7 +11,7 @@ defmodule RabbitMQCtl.MixfileBase do
|
||
|
[
|
||
|
app: :rabbitmqctl,
|
||
|
version: "3.13.0-dev",
|
||
|
- elixir: ">= 1.13.4 and < 1.18.0",
|
||
|
+ elixir: ">= 1.13.4 and < 1.19.0",
|
||
|
build_embedded: Mix.env() == :prod,
|
||
|
start_permanent: Mix.env() == :prod,
|
||
|
escript: [
|