sqlite3 2.0.2-x86_64-linux-musl → 2.0.4-x86_64-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: 7b5be0566f49231deff1c89615adca1b7ac4f60a632d6a28854e8ece96cc7b0d
4
- data.tar.gz: f2e688d221dbf1a70ad256c9fca131dec91bfbb8850725efbad4930ecbaf2e26
3
+ metadata.gz: 92af6d999be539901949c529d1a571b5347ed1940bdec72477edfaa060901d30
4
+ data.tar.gz: bca71f0cb161f72649de6b029ba89aad20ca1925d1ff82b998a3c74d14979a4f
5
5
  SHA512:
6
- metadata.gz: 47ac8e7466891760d9ae840ab5815cd3406ee4fd3231f5f49886300790bd81c4bfaa73e877678ef6bbdbbeafc361339ab7b14f1344da8e0dc6541846cc1f6994
7
- data.tar.gz: ca9f21810ac511bc2e41c42b99c19ef018df85d3190695b7f2cfafc0aae8b1790f7f360306962c0f472cd584bb6dd08ba978796db99cce2f37bc7e8d3facd43e
6
+ metadata.gz: c6cb252eb4d3cfd49b1040d18a029927d04572ebec0cc7a2fd45f26f66452475da003da8808db1fe342ed038eacf793670b20385bb6db648f9d3903a6c10834e
7
+ data.tar.gz: 88b96e8baff59a7869328ed097bc7f73d82877da3cd1be5c4ba8b0e0111c501f47b1a5e18ddf304bd09409838a56bf42f6b55ae43776255e8f48d18df90c354c
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: x86_64-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