We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ac6e72 commit 1c0cda6Copy full SHA for 1c0cda6
lib/baml_elixir/native.ex
@@ -3,7 +3,7 @@ defmodule BamlElixir.Native do
3
4
use RustlerPrecompiled,
5
otp_app: :baml_elixir,
6
- base_url: "https://github.com/emilsoman/baml-elixir/releases/download/#{version}/",
+ base_url: "https://github.com/emilsoman/baml-elixir/releases/download/v#{version}/",
7
force_build: System.get_env("BAML_ELIXIR_BUILD") in ["1", "true"],
8
version: version
9
mix.exs
@@ -1,10 +1,12 @@
1
defmodule BamlElixir.MixProject do
2
use Mix.Project
+ @version "0.1.0-pre-9"
+
def project do
[
app: :baml_elixir,
- version: "0.1.0",
+ version: @version,
10
elixir: "~> 1.17",
11
start_permanent: Mix.env() == :prod,
12
deps: deps(),
0 commit comments