Skip to content

Commit

Permalink
Cut v0.7.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristgit committed May 7, 2023
1 parent 56dfc91 commit 3a4d139
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/nostrum/api.ex
Original file line number Diff line number Diff line change
Expand Up @@ -2840,7 +2840,7 @@ defmodule Nostrum.Api do
@doc """
Retrieves the original message of a webhook.
"""
@doc since: "0.6.2"
@doc since: "0.7.0"
@spec get_webhook_message(Webhook.t(), Message.id()) ::
error | {:ok, Message.t()}
def get_webhook_message(webhook, message_id) do
Expand Down Expand Up @@ -3513,7 +3513,7 @@ defmodule Nostrum.Api do
@doc """
Retrieves the original message of an interaction.
"""
@doc since: "0.6.2"
@doc since: "0.7.0"
@spec get_original_interaction_response(Interaction.t()) :: error | {:ok, Message.t()}
def get_original_interaction_response(interaction) do
path = Constants.original_interaction_response(interaction.application_id, interaction.token)
Expand Down
4 changes: 2 additions & 2 deletions lib/nostrum/struct/guild/member.ex
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ defmodule Nostrum.Struct.Guild.Member do
@type roles :: [Role.id()]

@typedoc """
Date the member joined the guild.
Date the member joined the guild, as a unix timestamp.
If you dont request offline guild members this field will be `nil` for any members that come online.
"""
@type joined_at :: String.t() | nil
@type joined_at :: pos_integer() | nil

@typedoc """
Whether the member is deafened.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ defmodule Nostrum.Mixfile do
def project do
[
app: :nostrum,
version: "0.7.0",
version: "0.7.0-rc1",
elixir: "~> 1.11",
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
Expand Down

0 comments on commit 3a4d139

Please # to comment.