File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 22
33## Unlreleased
44
5+ ## v0.13.2 - 2023-01-26
6+ - fixed: ` -O2 ` flag was not being set when compiling binaries in non windows environment.
7+
58## v0.13.1 - 2023-01-26
69- added: ` SQLITE_ENABLE_DBSTAT_VTAB=1 ` .
710- changed: Allow ` EXQLITE_SYSTEM_CFLAGS ` to be appended to the ` CFLAGS ` regardless.
Original file line number Diff line number Diff line change 2121SRC = c_src/sqlite3_nif.c
2222HEADERS = c_src/utf8.h
2323
24+ CFLAGS = -I"$(ERTS_INCLUDE_DIR ) "
25+
2426ifeq ($(EXQLITE_USE_SYSTEM ) ,)
2527 SRC += c_src/sqlite3.c
2628 HEADERS += c_src/sqlite3.h c_src/sqlite3ext.h
3537 endif
3638endif
3739
38- CFLAGS ?= -O2 -Wall
3940ifneq ($(DEBUG ) ,)
4041 CFLAGS += -g
4142else
42- CFLAGS += -DNDEBUG=1
43+ CFLAGS += -DNDEBUG=1 -O2
4344endif
44- CFLAGS += -I"$(ERTS_INCLUDE_DIR ) "
4545
4646KERNEL_NAME := $(shell uname -s)
4747
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Package: https://hex.pm/packages/exqlite
3434``` elixir
3535defp deps do
3636 [
37- {:exqlite , " ~> 0.13.1 " }
37+ {:exqlite , " ~> 0.13.2 " }
3838 ]
3939end
4040```
Original file line number Diff line number Diff line change 11defmodule Exqlite.MixProject do
22 use Mix.Project
33
4- @ version "0.13.1 "
4+ @ version "0.13.2 "
55 @ sqlite_version "3.40.1"
66
77 def project do
You can’t perform that action at this time.
0 commit comments