From bdbde27dc9cf9bac4df2939d41bae9fca935584a Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 14 Feb 2023 17:28:49 -0500 Subject: [PATCH] docs: don't use hardcoded versions in the docs --- .../getting-started-with-ash-authentication-phoenix.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md b/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md index 2ae9a98..2e8e465 100644 --- a/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md +++ b/documentation/tutorials/getting-started-with-ash-authentication-phoenix.md @@ -32,9 +32,14 @@ defmodule Example.MixProject do # add these lines --> {:ash, "~> 2.5.11"}, {:ash_authentication, "~> 3.7.3"}, +<<<<<<< Updated upstream {:ash_authentication_phoenix, "~> 1.5.0"}, {:ash_postgres, "~> 1.3.2"}, {:elixir_sense, github: "elixir-lsp/elixir_sense", only: [:dev, :test]} +======= + {:ash_authentication_phoenix, "~> 1.4.6"}, + {:ash_postgres, "~> 1.3.2"} +>>>>>>> Stashed changes # <-- add these lines ] end