From 8fc44301843029a13a474d1f292378485e1fdd62 Mon Sep 17 00:00:00 2001 From: Jason S Date: Wed, 30 Aug 2023 13:08:03 -0500 Subject: [PATCH] Update mix.exs source url (#99) Hex was linking to the wrong spot, so I updated it to be the right one. --- bindings/elixir/mix.exs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings/elixir/mix.exs b/bindings/elixir/mix.exs index ebe1315..81bda76 100644 --- a/bindings/elixir/mix.exs +++ b/bindings/elixir/mix.exs @@ -1,7 +1,7 @@ defmodule SqliteVss.MixProject do use Mix.Project - @source_url "https://github.com/asg017/sqlite-vss/bindings/elixir" + @source_url "https://github.com/asg017/sqlite-vss/tree/main/bindings/elixir" @version File.read!(Path.expand("./VERSION", __DIR__)) |> String.trim() def project do @@ -12,8 +12,8 @@ defmodule SqliteVss.MixProject do start_permanent: Mix.env() == :prod, deps: deps(), name: "sqlite_vss", - source_url: "https://github.com/asg017/sqlite-vss", - homepage_url: "https://github.com/asg017/sqlite-vss", + source_url: @source_url, + homepage_url: @source_url, docs: [ main: "SqliteVss", extras: ["README.md"],