Skip to content

Commit 3d8d548

Browse files
authored
Merge pull request #558 from Kraigie/jb3/0.9-prep
Bump version to 0.9
2 parents f68134b + 193997a commit 3d8d548

File tree

6 files changed

+8
-4
lines changed

6 files changed

+8
-4
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ version from Hex:
2929

3030
```elixir
3131
def deps do
32-
[{:nostrum, "~> 0.8"}]
32+
[{:nostrum, "~> 0.9"}]
3333
end
3434
```
3535

Diff for: appup.ex

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
# See the appup cookbook for instructions:
22
# https://www.erlang.org/doc/design_principles/appup_cookbook.html
33
{
4-
~c"0.9.0-alpha3",
4+
~c"0.9.0",
55
[
66
# Upgrade instructions
7+
{~c"0.9.0-rc1", []},
8+
{~c"0.9.0-alpha3", []},
79
{~c"0.9.0-alpha2", []},
810
{~c"0.9.0-alpha1",
911
[

Diff for: guides/intro/intro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ have more errors.
1818

1919
```elixir
2020
def deps do
21-
[{:nostrum, "~> 0.8"}]
21+
[{:nostrum, "~> 0.9"}]
2222
# Or, for bleeding edge changes:
2323
# [{:nostrum, github: "Kraigie/nostrum"}]
2424
end

Diff for: lib/nostrum/struct/message/poll.ex

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ defmodule Nostrum.Struct.Message.Poll do
44
55
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.
66
"""
7+
@moduledoc since: "0.9.0"
78

89
alias Nostrum.Util
910

Diff for: lib/nostrum/struct/user.ex

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ defmodule Nostrum.Struct.User do
5151
@type discriminator :: String.t()
5252

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

5657
@typedoc "User's avatar hash"

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.9.0-rc1",
10+
version: "0.9.0",
1111
elixir: "~> 1.14",
1212
elixirc_paths: elixirc_paths(Mix.env()),
1313
build_embedded: Mix.env() == :prod,

0 commit comments

Comments
 (0)