File tree 7 files changed +2988
-1356
lines changed
7 files changed +2988
-1356
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unlreleased
4
4
5
+ ## v0.13.4 - 2023-02-24
6
+ - changed: Updated sqlite3 to 3.41.0
7
+
5
8
## v0.13.3 - 2023-02-19
6
9
- added: precompilation support. [ #234 ] ( https://github.com/elixir-sqlite/exqlite/pull/234 )
7
10
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Package: https://hex.pm/packages/exqlite
34
34
``` elixir
35
35
defp deps do
36
36
[
37
- {:exqlite , " ~> 0.13.3 " }
37
+ {:exqlite , " ~> 0.13.4 " }
38
38
]
39
39
end
40
40
```
Original file line number Diff line number Diff line change 10
10
mkdir -p tmp
11
11
pushd tmp
12
12
13
- wget https://sqlite.org/2022 /sqlite-autoconf-$VERSION .tar.gz
13
+ wget https://sqlite.org/2023 /sqlite-autoconf-$VERSION .tar.gz
14
14
15
15
tar xvfz sqlite-autoconf-$VERSION .tar.gz
16
16
Load Diff Large diffs are not rendered by default.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -359,6 +359,8 @@ struct sqlite3_api_routines {
359
359
const char * (* db_name )(sqlite3 * ,int );
360
360
/* Version 3.40.0 and later */
361
361
int (* value_encoding )(sqlite3_value * );
362
+ /* Version 3.41.0 and later */
363
+ int (* is_interrupted )(sqlite3 * );
362
364
};
363
365
364
366
/*
@@ -685,6 +687,8 @@ typedef int (*sqlite3_loadext_entry)(
685
687
#define sqlite3_db_name sqlite3_api->db_name
686
688
/* Version 3.40.0 and later */
687
689
#define sqlite3_value_encoding sqlite3_api->value_encoding
690
+ /* Version 3.41.0 and later */
691
+ #define sqlite3_is_interrupted sqlite3_api->is_interrupted
688
692
#endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */
689
693
690
694
#if !defined(SQLITE_CORE ) && !defined(SQLITE_OMIT_LOAD_EXTENSION )
Original file line number Diff line number Diff line change 1
1
defmodule Exqlite.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.13.3 "
5
- @ sqlite_version "3.40.1 "
4
+ @ version "0.13.4 "
5
+ @ sqlite_version "3.41.0 "
6
6
7
7
def project do
8
8
[
You can’t perform that action at this time.
0 commit comments