Skip to content

Commit 1d58800

Browse files
committed
Mark 0.9.0-alpha1
1 parent f3ceb26 commit 1d58800

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

Diff for: appup.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
'0.9.0',
2+
'0.9.0-alpha1',
33
[
44
{'0.8.0', [
55
# Upgrade instructions from 0.8.0

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

Diff for: test/nostrum_test.exs

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ defmodule NostrumTest do
1111
{raw_target, _up_instructions, _down_instructions} = appup
1212
target = Version.parse!(:erlang.list_to_binary(raw_target))
1313

14-
assert target.major == @version.major
15-
assert target.minor == @version.minor
16-
assert target.patch == @version.patch
14+
assert target == @version
1715
end
1816
end
1917
end

0 commit comments

Comments
 (0)