File tree Expand file tree Collapse file tree 5 files changed +9
-2
lines changed Expand file tree Collapse file tree 5 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 33## [ Unreleased] ( unreleased )
44
55
6+ ## [ 0.8.6] - 2022-01-19
7+ ### Changed
8+ - Compile SQLite3 with ` -DHAVE_USLEEP=1 ` to allow for more performant concurrent use.
9+
10+
611## [ 0.8.5] - 2022-01-14
712### Changed
813- Update SQLite from [ 3.37.0] ( https://www.sqlite.org/releaselog/3_37_0.html ) to [ 3.37.2] ( https://sqlite.org/releaselog/3_37_2.html )
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ CFLAGS += -DSQLITE_THREADSAFE=1
7373CFLAGS += -DSQLITE_USE_URI=1
7474CFLAGS += -DSQLITE_LIKE_DOESNT_MATCH_BLOBS=1
7575CFLAGS += -DSQLITE_DQS=0
76+ CFLAGS += -DHAVE_USLEEP=1
7677
7778# TODO: The following features should be completely configurable by the person
7879# installing the nif. Just need to have certain environment variables
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ CFLAGS = -DSQLITE_THREADSAFE=1 $(CFLAGS)
2424CFLAGS = -DSQLITE_USE_URI=1 $(CFLAGS)
2525CFLAGS = -DSQLITE_LIKE_DOESNT_MATCH_BLOBS=1 $(CFLAGS)
2626CFLAGS = -DSQLITE_DQS=0 $(CFLAGS)
27+ CFLAGS = -DHAVE_USLEEP=1 $(CFLAGS)
2728
2829# TODO: The following features should be completely configurable by the person
2930# installing the nif. Just need to have certain environment variables
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Package: https://hex.pm/packages/exqlite
3333
3434``` elixir
3535defp deps do
36- {:exqlite , " ~> 0.8.5 " }
36+ {:exqlite , " ~> 0.8.6 " }
3737end
3838```
3939
Original file line number Diff line number Diff line change 11defmodule Exqlite.MixProject do
22 use Mix.Project
33
4- @ version "0.8.5 "
4+ @ version "0.8.6 "
55
66 def project do
77 [
You can’t perform that action at this time.
0 commit comments