Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nostrum 0.10.0 #614

Merged
merged 3 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.9"}]
[{:nostrum, "~> 0.10"}]
end
```

Expand Down
3 changes: 2 additions & 1 deletion appup.ex
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# See the appup cookbook for instructions:
# https://www.erlang.org/doc/design_principles/appup_cookbook.html
{
~c"0.9.1",
~c"0.10.0",
[
# Upgrade instructions
{~c"0.9.1", []},
{~c"0.9.0", []},
{~c"0.9.0-rc1", []},
{~c"0.9.0-alpha3", []},
Expand Down
Binary file added assets/versions/0_10_0_release.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion guides/advanced/multi_node.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ as command frameworks like `:nosedrum`:
```elixir
defp deps do
[
{:nostrum, "~> 0.9", runtime: false},
{:nostrum, "~> 0.10", runtime: false},
# {:nosedrum, "~> 0.6", runtime: false},
]
end
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.9"}]
[{:nostrum, "~> 0.10"}]
# Or, for bleeding edge changes:
# [{:nostrum, github: "Kraigie/nostrum"}]
end
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.1",
version: "0.10.0",
elixir: "~> 1.14",
elixirc_paths: elixirc_paths(Mix.env()),
build_embedded: Mix.env() == :prod,
Expand Down
Loading