diff --git a/README.md b/README.md index 93a54a1ee..75ab8044d 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ version from Hex: ```elixir def deps do - [{:nostrum, "~> 0.7"}] + [{:nostrum, "~> 0.8"}] end ``` diff --git a/assets/versions/0_8_0_release.png b/assets/versions/0_8_0_release.png new file mode 100644 index 000000000..08655c988 Binary files /dev/null and b/assets/versions/0_8_0_release.png differ diff --git a/guides/advanced/multi_node.md b/guides/advanced/multi_node.md index 15e0d1b33..4f48d4785 100644 --- a/guides/advanced/multi_node.md +++ b/guides/advanced/multi_node.md @@ -53,8 +53,8 @@ as command frameworks like `:nosedrum`: ```elixir defp deps do [ - {:nostrum, "~> 0.7", runtime: false}, - # {:nosedrum, "~> 0.5", runtime: false}, + {:nostrum, "~> 0.8", runtime: false}, + # {:nosedrum, "~> 0.6", runtime: false}, ] end ``` diff --git a/guides/intro/intro.md b/guides/intro/intro.md index 642b47e60..007451c55 100644 --- a/guides/intro/intro.md +++ b/guides/intro/intro.md @@ -18,7 +18,7 @@ have more errors. ```elixir def deps do - [{:nostrum, "~> 0.7"}] + [{:nostrum, "~> 0.8"}] # Or, for bleeding edge changes: # [{:nostrum, github: "Kraigie/nostrum"}] end diff --git a/mix.exs b/mix.exs index a1472aac6..0d19591f7 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Nostrum.Mixfile do def project do [ app: :nostrum, - version: "0.8.0-beta1", + version: "0.8.0", elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), build_embedded: Mix.env() == :prod,