Bump elixir version to ~> 1.8
authorMaxim Filippov <colixer@gmail.com>
Tue, 17 Sep 2019 19:36:42 +0000 (22:36 +0300)
committerMaxim Filippov <colixer@gmail.com>
Tue, 17 Sep 2019 19:36:42 +0000 (22:36 +0300)
CHANGELOG.md
mix.exs

index 4eb72c002cb128fb6539f43d47e7b36cc832cdfe..f2d149304a24ac9c76821407f7230fd8d52f1553 100644 (file)
@@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
 - Remove `Reply-To` header from report emails for admins.
 
 ### Changed
+- **Breaking:** Now pleroma requires Elixir ~> 1.8 (it was ~> 1.7)
 - **Breaking:** Configuration: A setting to explicitly disable the mailer was added, defaulting to true, if you are using a mailer add `config :pleroma, Pleroma.Emails.Mailer, enabled: true` to your config
 - **Breaking:** Configuration: `/media/` is now removed when `base_url` is configured, append `/media/` to your `base_url` config to keep the old behaviour if desired
 - **Breaking:** `/api/pleroma/notifications/read` is moved to `/api/v1/pleroma/notifications/read` and now supports `max_id` and responds with Mastodon API entities.
diff --git a/mix.exs b/mix.exs
index 230f90244acd8cd36fb12104af57421880559451..7d262a60feb889c31b695f280c02b82ae8af811d 100644 (file)
--- a/mix.exs
+++ b/mix.exs
@@ -5,7 +5,7 @@ defmodule Pleroma.Mixfile do
     [
       app: :pleroma,
       version: version("1.0.0"),
-      elixir: "~> 1.7",
+      elixir: "~> 1.8",
       elixirc_paths: elixirc_paths(Mix.env()),
       compilers: [:phoenix, :gettext] ++ Mix.compilers(),
       elixirc_options: [warnings_as_errors: true],