extralite-bundle 2.13 → 2.14

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34842512dd1c747b070c821906493211e4bf897c5de286ec6bdaee0b18dd3645
4
- data.tar.gz: f392c8368a5242544b9745ca37ca49aa5b8f84d4bbf874170d671ae38d7afb28
3
+ metadata.gz: a075a97007d3a5d12154d7c6843ff7915a51f17f391c8a35d75e887e0a7a27f6
4
+ data.tar.gz: a5168793e589bf5508e61559f72ad1cc665572d6526be5607abe2395b8c6810d
5
5
  SHA512:
6
- metadata.gz: 6ef5f07c4f06e7f43c92e4cb6fa2a86dcbe39635aed25084e68501bedaf3b4c1d44df6afcae9aefe455dc6423fca34a711c57e3f0dcc9fb36f2139bb51063e57
7
- data.tar.gz: 901ffe6e01a603e21719992767d01a06842c8476a83d4a2f35b0271261e63e1e1b5e7a69c5ca8573b87cd5beaa01263aea26106da2efb08d43f60ab1bafbc992
6
+ metadata.gz: 297316079bb5e21941ab7d75acebcdb588c74aa128c50eb0415937e8d06720cecd745fb6bc8d9df871bbb006992f35f66d39e6868071bde9b668a4a673c54085
7
+ data.tar.gz: 30600bcedd2f58d2f9eeb7527555201febe1f032394159afc8ecaf61d63c162e30cb14ee72a5c652217a648443a56adbc124e41563886502814a9a7eb3db4870
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 2.14 2026-01-25
2
+
3
+ - Update bundled SQLite to 3.51.2
4
+ - Update dependencies
5
+
1
6
  ## 2.13 2025-08-03
2
7
 
3
8
  - Update bundled SQLite to version 30.50.4
data/README.md CHANGED
@@ -32,7 +32,7 @@ databases.
32
32
  Extralite comes in two flavors: the `extralite` gem which uses the
33
33
  system-installed sqlite3 library, and the `extralite-bundle` gem which bundles
34
34
  the latest version of SQLite
35
- ([3.50.3](https://sqlite.org/releaselog/3_50_3.html)), offering access to the
35
+ ([3.51.2](https://sqlite.org/releaselog/3_51_2.html)), offering access to the
36
36
  latest features and enhancements.
37
37
 
38
38
  ## Features
@@ -1160,19 +1160,18 @@ struct progress_handler parse_progress_handler_opts(VALUE opts) {
1160
1160
  .tick = DEFAULT_PROGRESS_HANDLER_TICK
1161
1161
  };
1162
1162
 
1163
- if (!NIL_P(opts)) {
1164
- if (!kw_ids[0]) {
1165
- CONST_ID(kw_ids[0], "period");
1166
- CONST_ID(kw_ids[1], "tick");
1167
- CONST_ID(kw_ids[2], "mode");
1168
- }
1169
-
1170
- rb_get_kwargs(opts, kw_ids, 0, 3, kw_args);
1171
- if (kw_args[0] != Qundef) { prog.period = NUM2INT(kw_args[0]); }
1172
- if (kw_args[1] != Qundef) { prog.tick = NUM2INT(kw_args[1]); }
1173
- if (kw_args[2] != Qundef) { prog.mode = symbol_to_progress_mode(kw_args[2]); }
1174
- if (prog.tick > prog.period) prog.tick = prog.period;
1163
+ if (!kw_ids[0]) {
1164
+ kw_ids[0] = rb_intern_const("period");
1165
+ kw_ids[1] = rb_intern_const("tick");
1166
+ kw_ids[2] = rb_intern_const("mode");
1175
1167
  }
1168
+
1169
+ rb_get_kwargs(opts, kw_ids, 0, 3, kw_args);
1170
+ if (kw_args[0] != Qundef) { prog.period = NUM2INT(kw_args[0]); }
1171
+ if (kw_args[1] != Qundef) { prog.tick = NUM2INT(kw_args[1]); }
1172
+ if (kw_args[2] != Qundef) { prog.mode = symbol_to_progress_mode(kw_args[2]); }
1173
+ if (prog.tick > prog.period) prog.tick = prog.period;
1174
+
1176
1175
  if (NIL_P(prog.proc) || (prog.period <= 0)) prog.mode = PROGRESS_NONE;
1177
1176
  if (prog.mode == PROGRESS_NONE) prog.proc = Qnil;
1178
1177