amalgalite 1.9.1-x64-mingw-ucrt → 1.9.4-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/HISTORY.md +9 -0
- data/ext/amalgalite/c/sqlite3.c +16397 -5973
- data/ext/amalgalite/c/sqlite3.h +508 -123
- data/ext/amalgalite/c/sqlite3ext.h +10 -0
- data/lib/amalgalite/3.1/amalgalite.so +0 -0
- data/lib/amalgalite/version.rb +1 -1
- data/spec/sqlite3/version_spec.rb +7 -7
- data/tasks/default.rake +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 105dc627d292fe9a8e597609e44e92eb16a7b992b69da5256bab7e9d3e1069dc
|
4
|
+
data.tar.gz: 63be8024418af2e3b2677662a696d4b3e676946c9fc593e9e982cf8c632d41aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c206096e133bd86862f45cbab338ca65186ce89d1903e3e679e67584ba82d335c2a4f7ca66bfc0434d03e5cac980fe01d754912d2cfcadbf37dce10043f7ff8c
|
7
|
+
data.tar.gz: 1b4fa1b7ee3a65280961003351f0c4b6afb9a2a79fd1454810de0493c48bb7b7f34ff7ed5b6999dd081224652869660e058c9188d3cc34c034e0300d27838899
|
data/HISTORY.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Amalgalite Changelog
|
2
2
|
|
3
|
+
## VErsion 1.9.4 - 2024-03-03
|
4
|
+
* Update to SQLite 3.45.1
|
5
|
+
|
6
|
+
## Version 1.9.3 - 2023-12-20
|
7
|
+
* Update to SQLite 3.44.2
|
8
|
+
|
9
|
+
## Version 1.9.2 - 2023-11-14
|
10
|
+
* Update to SQLite 3.44.0
|
11
|
+
|
3
12
|
## Version 1.9.1 - 2023-04-27
|
4
13
|
* Fix loading of amagalite on ruby 2.6.10 and ruby 2.4.10 [#46]
|
5
14
|
|