extralite-bundle 1.26 → 1.27

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 566a896b52bee42cadd627b119dc198f7ee8b958acb7c2d73f8f5e77c4dc19e9
4
- data.tar.gz: 7e95e8d41d675aea693e5f79442f1d8d484ea8b2fde52d1e8105bfd0241b9428
3
+ metadata.gz: b51bacdb05577087d8fd0aa6428121a111602171b57deda15eab5f1cf29cfda5
4
+ data.tar.gz: 433cf1f1960a8a061c6d99b94cd21d1ede168e6834c9e52b72121087dedfdb04
5
5
  SHA512:
6
- metadata.gz: c4c392e07f2375665e2be172b3b0fafda12832bb49fd0e8bafa2aa99501640695847290aef6a13cdbd11077a69bba1708a5fb9532707510e00ca48cbcbefce6b
7
- data.tar.gz: bb306af730a61fdb406881ad2f090b7b60223b81830e54ff7d682573162a1d6d9745608da0ba8fcb6b4aa17c8a547c884ace734981c058b79f68e9cd23bd028b
6
+ metadata.gz: b2c02756e201bede96496566f377624abe732497b40e24ef166109df059d9c0e45d53c0787995b5837708e7546ba92e9ede723d63f76e81c2ad643880df391db
7
+ data.tar.gz: 25e7d986ff8f0c3a8b449a35f81afd7b18bdc76de3b3fdede55b6f9d4859e8f50bf081737181f039c4d34cc465b2faa67b93ef50ababb2a3571550f3476bd8c7
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ # 1.27 2023-06-12
2
+
3
+ - Fix execution of prepared statements in Sequel adapter (#23 @gschlager)
4
+ - Update bundled sqlite code to version 3.42.0 (#22 @gschlager)
5
+
1
6
  # 1.26 2023-05-17
2
7
 
3
8
  - Improve documentation
data/Gemfile.lock CHANGED
@@ -1,13 +1,13 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- extralite (1.26)
4
+ extralite (1.27)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
9
  docile (1.4.0)
10
- json (2.6.1)
10
+ json (2.6.3)
11
11
  minitest (5.15.0)
12
12
  rake (13.0.6)
13
13
  rake-compiler (1.1.6)
data/README.md CHANGED
@@ -14,7 +14,7 @@ with an SQLite3 database, as well as prepared statements.
14
14
  Extralite comes in two flavors: the `extralite` gem which uses the
15
15
  system-installed sqlite3 library, and the `extralite-bundle` gem which bundles
16
16
  the latest version of SQLite
17
- ([3.40.1](https://sqlite.org/releaselog/3_40_1.html)), offering access to the
17
+ ([3.42.0](https://sqlite.org/releaselog/3_42_0.html)), offering access to the
18
18
  latest features and enhancements.
19
19
 
20
20
  ## Features