Releases: elixir-sqlite/exqlite
Releases · elixir-sqlite/exqlite
v0.9.2
Added
- Ability to set
:journal_size_limit
in bytes. #189
- Ability to set
:soft_heap_limit
in bytes. #189
- Ability to set
:hard_heap_limit
in bytes. #189
v0.9.1
Added
- Documentation about compiling with system install sqlite3.
Fixed
- Debug output during
mix compile
process.
v0.8.7
Added
- Ability to compile exqlite using the system sqlite3 installation as opposed to building from source. #186
v0.8.6
Changed
- Compile SQLite3 with
-DHAVE_USLEEP=1
to allow for more performant concurrent use.
v0.8.3
Changed
- Compilation output to be less verbose. If more verbosity is desired
V=1 mix compile
will remedy that. #181
- When the path to the database does not exist,
mkdir_p
is invoked. #180
v0.8.1
Fixed
- Fixed unicode handling when executing sql statements. #179
v0.7.1
Fixed
- Fix segfault on double closing an sqlite connection. #162