From b7b684b9ddf02e2d62ed8637ba3578a5b81a0769 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Thu, 18 Jul 2024 17:46:10 +0100 Subject: [PATCH] Nostrum 0.10.0 --- appup.ex | 3 ++- mix.exs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/appup.ex b/appup.ex index 25c8db289..5b0dce01d 100644 --- a/appup.ex +++ b/appup.ex @@ -1,9 +1,10 @@ # See the appup cookbook for instructions: # https://www.erlang.org/doc/design_principles/appup_cookbook.html { - ~c"0.9.1", + ~c"0.10.0", [ # Upgrade instructions + {~c"0.9.1", []}, {~c"0.9.0", []}, {~c"0.9.0-rc1", []}, {~c"0.9.0-alpha3", []}, diff --git a/mix.exs b/mix.exs index 1e663a9a0..49cc1bedf 100644 --- a/mix.exs +++ b/mix.exs @@ -7,7 +7,7 @@ defmodule Nostrum.Mixfile do app: :nostrum, appup: "appup.ex", compilers: Mix.compilers() ++ [:appup], - version: "0.9.1", + version: "0.10.0", elixir: "~> 1.14", elixirc_paths: elixirc_paths(Mix.env()), build_embedded: Mix.env() == :prod,