Skip to content

Commit a24da57

Browse files
committed
Release v0.10.2
1 parent ffb511e commit a24da57

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Diff for: appup.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# See the appup cookbook for instructions:
22
# https://www.erlang.org/doc/design_principles/appup_cookbook.html
33
{
4-
~c"0.10.1",
4+
~c"0.10.2",
55
[
66
# Upgrade instructions
7+
{~c"0.10.1", [{:update, Nostrum.Api.Ratelimiter, {:advanced, []}}]},
78
{~c"0.10.0", [{:restart_application, :nostrum}]},
89
{~c"0.9.1", [{:restart_application, :nostrum}]},
910
{~c"0.9.0", [{:restart_application, :nostrum}]},

Diff for: lib/nostrum/api/ratelimiter.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ defmodule Nostrum.Api.Ratelimiter do
638638
# start scheduling, unless we are out of requests for this time window on all
639639
# bot requests.
640640
def connected({:timeout, bucket}, :expired, %{remaining_in_window: 0}) do
641-
Logger.debug(
641+
Logger.warning(
642642
"Ratelimits on #{inspect(bucket)} have expired but we may not queue more requests due to the bot user limit."
643643
)
644644

Diff for: mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ defmodule Nostrum.Mixfile do
77
app: :nostrum,
88
appup: "appup.ex",
99
compilers: Mix.compilers() ++ [:appup],
10-
version: "0.10.1",
10+
version: "0.10.2",
1111
elixir: "~> 1.14",
1212
elixirc_paths: elixirc_paths(Mix.env()),
1313
build_embedded: Mix.env() == :prod,

0 commit comments

Comments
 (0)