Skip to content

Commit

Permalink
Merge pull request #558 from Kraigie/jb3/0.9-prep
Browse files Browse the repository at this point in the history
Bump version to 0.9
  • Loading branch information
jb3 authored Apr 20, 2024
2 parents f68134b + 193997a commit 3d8d548
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ version from Hex:

```elixir
def deps do
[{:nostrum, "~> 0.8"}]
[{:nostrum, "~> 0.9"}]
end
```

Expand Down
4 changes: 3 additions & 1 deletion appup.ex
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# See the appup cookbook for instructions:
# https://www.erlang.org/doc/design_principles/appup_cookbook.html
{
~c"0.9.0-alpha3",
~c"0.9.0",
[
# Upgrade instructions
{~c"0.9.0-rc1", []},
{~c"0.9.0-alpha3", []},
{~c"0.9.0-alpha2", []},
{~c"0.9.0-alpha1",
[
Expand Down
2 changes: 1 addition & 1 deletion guides/intro/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ have more errors.

```elixir
def deps do
[{:nostrum, "~> 0.8"}]
[{:nostrum, "~> 0.9"}]
# Or, for bleeding edge changes:
# [{:nostrum, github: "Kraigie/nostrum"}]
end
Expand Down
1 change: 1 addition & 0 deletions lib/nostrum/struct/message/poll.ex
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ defmodule Nostrum.Struct.Message.Poll do
There are various helper methods on this structure to create new poll, see `create_poll/2` and `put_answer/2` & `put_answer/3` for code samples.
"""
@moduledoc since: "0.9.0"

alias Nostrum.Util

Expand Down
1 change: 1 addition & 0 deletions lib/nostrum/struct/user.ex
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ defmodule Nostrum.Struct.User do
@type discriminator :: String.t()

@typedoc "The user's display name, if it is set"
@typedoc since: "0.9.0"
@type global_name :: String.t() | nil

@typedoc "User's avatar hash"
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ defmodule Nostrum.Mixfile do
app: :nostrum,
appup: "appup.ex",
compilers: Mix.compilers() ++ [:appup],
version: "0.9.0-rc1",
version: "0.9.0",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
Expand Down

0 comments on commit 3d8d548

Please sign in to comment.