Skip to content

Commit

Permalink
Bump to v0.16.2
Browse files Browse the repository at this point in the history
  • Loading branch information
warmwaffles committed Oct 30, 2023
1 parent a723fa5 commit fe3acf5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Unlreleased

## v0.16.2
- fixed: Precompile support for Windows.

## v0.16.1
- fixed: Precompiled binaries for OTP 26. Windows precompiled binaries should work now.

Expand Down
4 changes: 2 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
defmodule Exqlite.MixProject do
use Mix.Project

@version "0.16.1"
@version "0.16.2"
@sqlite_version "3.43.2"

def project do
Expand Down Expand Up @@ -83,7 +83,7 @@ defmodule Exqlite.MixProject do

def target_available_for_nif_version?(target, nif_version) do
if String.contains?(target, "windows") do
nif_version == "2.16"
Enum.member?(["2.16", "2.17"], nif_version)
else
true
end
Expand Down

0 comments on commit fe3acf5

Please sign in to comment.