From 91aa09df38d8adfe55839d17ddbc036ad4d9c866 Mon Sep 17 00:00:00 2001 From: Cocoa Date: Mon, 27 Jan 2025 15:23:12 +0100 Subject: [PATCH] fix make_precompiler_priv_paths Signed-off-by: Cocoa --- CHANGELOG.md | 6 ++++++ mix.exs | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71c18a3..ff82598 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v0.7.6 + +#### Fixes + +* Fixed the issue introduced in #122 + ## v0.7.5 #### Fixes diff --git a/mix.exs b/mix.exs index 2c41f3d..51ae84e 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Adbc.MixProject do use Mix.Project - @version "0.7.5" + @version "0.7.5-dev" @github_url "https://github.com/elixir-explorer/adbc" def project do @@ -31,7 +31,7 @@ defmodule Adbc.MixProject do make_precompiler_url: "#{@github_url}/releases/download/v#{@version}/@{artefact_filename}", make_precompiler_filename: "adbc_nif", - make_precompiler_priv_paths: ["adbc_nif.*", "adbc_dll_loader.dll"], + make_precompiler_priv_paths: ["adbc_nif.*", "adbc_dll_loader.dll", "lib", "include"], make_precompiler_nif_versions: [versions: ["2.16"]], cc_precompiler: [ cleanup: "clean",