sqlite3 2.0.2-arm-linux-musl → 2.0.4-arm-linux-musl

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: 64477ba0ac7daad7cc8c8d5b9e60d5da8edf81130429eae48e6a40c321049673
4
- data.tar.gz: 7b6385b4f114b0b6690011435b391ce417de76608c7ff3cd63f4cfbb734cf2d5
3
+ metadata.gz: 38b7a720aae7deadb81ecb8823c02b8a521b9fda7bfb27690a3bb83909fd479b
4
+ data.tar.gz: 5ca15476c79e1b0201a4445c1c5ba2461332425a8aff8e5e1a8a08d92fa66e61
5
5
  SHA512:
6
- metadata.gz: ac9601738c31836dfc70e2859e4217259f5363422f6550991138000ae02681a275b54281f651a24e7dd52e20438fceae9d365f36f0d255a5e6eb7e66396a15a7
7
- data.tar.gz: 2c85ea61dd0f2cd6c69bae12be934d0f35f59edfb1b9b253661fed032cd093caf63f602ad401a67d9bad0c1112f80f1033b17f9a5fafd64a623811687686f99a
6
+ metadata.gz: 8caa0bc5b048a442f15bfc73eccee9f519156034c0a11ce339da1846ca0e51e311eb07f580a1cbdc8d5de0417f0a32f0001c50ed1615eeda8d411547779bcb05
7
+ data.tar.gz: 62b56b56a043f350641f43fdd410f85402945250da84568268c40be2d64a2f2ff3ed2b5075f843111ef9a820e8a7e2502e769cfa195320d32526d2f171657c6f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.0.4 / 2024-08-13
4
+
5
+ ### Dependencies
6
+
7
+ - Vendored sqlite is updated to [v3.46.1](https://sqlite.org/releaselog/3_46_1.html) @flavorjones
8
+
9
+
10
+ ## 2.0.3 / 2024-07-29
11
+
12
+ ### Improved
13
+
14
+ - `Database#quote` avoids allocating strings where reusing frozen strings is preferable. #548 @casperisfine
15
+
16
+
3
17
  ## 2.0.2 / 2024-05-23
4
18
 
5
19
  ### Dependencies
data/dependencies.yml CHANGED
@@ -1,13 +1,13 @@
1
1
  sqlite3:
2
2
  # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
3
- # 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc
3
+ # 923f68143dcd9fc0c38778dee253fd6540a91f578173a04ca5adff885d8a8fbb
4
4
  #
5
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3460000.tar.gz
6
- # 83d2acf79453deb7d6520338b1f4585f12e39b27cd370fb08593afa198f471fc ports/archives/sqlite-autoconf-3460000.tar.gz
5
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3460100.tar.gz
6
+ # 923f68143dcd9fc0c38778dee253fd6540a91f578173a04ca5adff885d8a8fbb ports/archives/sqlite-autoconf-3460100.tar.gz
7
7
  #
8
- # $ sha256sum ports/archives/sqlite-autoconf-3460000.tar.gz
9
- # 6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d ports/archives/sqlite-autoconf-3460000.tar.gz
10
- version: "3.46.0"
8
+ # $ sha256sum ports/archives/sqlite-autoconf-3460100.tar.gz
9
+ # 67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071 ports/archives/sqlite-autoconf-3460100.tar.gz
10
+ version: "3.46.1"
11
11
  files:
12
- - url: "https://sqlite.org/2024/sqlite-autoconf-3460000.tar.gz"
13
- sha256: "6f8e6a7b335273748816f9b3b62bbdc372a889de8782d7f048c653a447417a7d"
12
+ - url: "https://sqlite.org/2024/sqlite-autoconf-3460100.tar.gz"
13
+ sha256: "67d3fe6d268e6eaddcae3727fce58fcc8e9c53869bdd07a0c61e38ddf2965071"
Binary file
Binary file
Binary file
Binary file
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "sqlite3/constants"
2
4
  require "sqlite3/errors"
3
5
  require "sqlite3/pragmas"
@@ -1,3 +1,3 @@
1
1
  module SQLite3
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.4"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sqlite3
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.4
5
5
  platform: arm-linux-musl
6
6
  authors:
7
7
  - Jamis Buck
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2024-05-23 00:00:00.000000000 Z
14
+ date: 2024-08-13 00:00:00.000000000 Z
15
15
  dependencies: []
16
16
  description: |
17
17
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled