Skip to content

Commit fe3acf5

Browse files
committed
Bump to v0.16.2
1 parent a723fa5 commit fe3acf5

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unlreleased
44

5+
## v0.16.2
6+
- fixed: Precompile support for Windows.
7+
58
## v0.16.1
69
- fixed: Precompiled binaries for OTP 26. Windows precompiled binaries should work now.
710

mix.exs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Exqlite.MixProject do
22
use Mix.Project
33

4-
@version "0.16.1"
4+
@version "0.16.2"
55
@sqlite_version "3.43.2"
66

77
def project do
@@ -83,7 +83,7 @@ defmodule Exqlite.MixProject do
8383

8484
def target_available_for_nif_version?(target, nif_version) do
8585
if String.contains?(target, "windows") do
86-
nif_version == "2.16"
86+
Enum.member?(["2.16", "2.17"], nif_version)
8787
else
8888
true
8989
end

0 commit comments

Comments
 (0)