sqlite3 1.7.1-arm-linux → 1.7.2-arm-linux

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: b37943bfe04a764c7b43ecd4a3299fb4fcb350a4e53192a043514e0841e7a851
4
- data.tar.gz: 6856533340d08fb888895c7e94c978184df0a0ef812f718dd4cf2f531a28eb4c
3
+ metadata.gz: 6d4e95b0b786ee74e8525761d5756263d260f54ed5e1e0737d4281b9de5dc1e1
4
+ data.tar.gz: 98f208b1f31d23e2102d5a1eafd7cd65c36a927c3209926e8dc6afe3d0172aed
5
5
  SHA512:
6
- metadata.gz: 7e104ac27f6383f26d4a1af6fd3ea47ac9793028890b3b55835d68e367550c57e97eb0b478872da82d1de77790201a5f90e32fb30388895ed0c4860b89a84a30
7
- data.tar.gz: 58958fb279dcc6a93647cead8bb320a0792d30100e942dbd7e509936404329f7bd22cb813b7f29b5234468b083da99338935a6ddeed78465f0572498702cbd23
6
+ metadata.gz: b7ba6bb756aa9f726d5a00e456889c5b7365ac903a11a4adcb0d483779982bb6f57097daaa2304bfa21b7337d292f154a5d6bfdd1ad4299b7f94420c31cd1941
7
+ data.tar.gz: e22e846fec2d1911377bb36702d4e461111577ad3d6053a5b31f54f83bd2d639ec559843ccfe23192756bc8e5c4dac7a1d87c16febcfed711f002b65ec718117
data/CHANGELOG.md CHANGED
@@ -1,10 +1,17 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.7.2 / unreleased
4
+
5
+ ### Dependencies
6
+
7
+ - Vendored sqlite is updated to [v3.45.1](https://www.sqlite.org/releaselog/3_45_1.html). @flavorjones
8
+
9
+
3
10
  ## 1.7.1 / 2024-01-24
4
11
 
5
12
  ### Dependencies
6
13
 
7
- - Vendored sqlite is update to [v3.45.0](https://www.sqlite.org/releaselog/3_45_0.html). @flavorjones
14
+ - Vendored sqlite is updated to [v3.45.0](https://www.sqlite.org/releaselog/3_45_0.html). @flavorjones
8
15
 
9
16
 
10
17
  ## 1.7.0 / 2023-12-27
data/dependencies.yml CHANGED
@@ -1,14 +1,14 @@
1
1
  # TODO: stop using symbols here once we no longer support Ruby 2.7 and can rely on symbolize_names
2
2
  :sqlite3:
3
3
  # checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
4
- # 9fc2a78088875ae7c112957d58ccc52b1a0a4afa34ac669290be42f352b1aa76
4
+ # a54395aa2cf76b5b973fa420715b6108afedc4d8c0209c763fd2c1b517f8ad9f
5
5
  #
6
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3450000.tar.gz
7
- # 9fc2a78088875ae7c112957d58ccc52b1a0a4afa34ac669290be42f352b1aa76 ports/archives/sqlite-autoconf-3450000.tar.gz
6
+ # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3450100.tar.gz
7
+ # a54395aa2cf76b5b973fa420715b6108afedc4d8c0209c763fd2c1b517f8ad9f ports/archives/sqlite-autoconf-3450100.tar.gz
8
8
  #
9
- # $ sha256sum ports/archives/sqlite-autoconf-3450000.tar.gz
10
- # 72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436 ports/archives/sqlite-autoconf-3450000.tar.gz
11
- :version: "3.45.0"
9
+ # $ sha256sum ports/archives/sqlite-autoconf-3450100.tar.gz
10
+ # cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a ports/archives/sqlite-autoconf-3450100.tar.gz
11
+ :version: "3.45.1"
12
12
  :files:
13
- - :url: "https://sqlite.org/2024/sqlite-autoconf-3450000.tar.gz"
14
- :sha256: "72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436"
13
+ - :url: "https://sqlite.org/2024/sqlite-autoconf-3450100.tar.gz"
14
+ :sha256: "cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a"
Binary file
Binary file
Binary file
Binary file
@@ -1,11 +1,11 @@
1
1
  module SQLite3
2
2
 
3
- VERSION = "1.7.1"
3
+ VERSION = "1.7.2"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 7
8
- TINY = 1
8
+ TINY = 2
9
9
  BUILD = nil
10
10
 
11
11
  STRING = [ MAJOR, MINOR, TINY, BUILD ].compact.join( "." )
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: 1.7.1
4
+ version: 1.7.2
5
5
  platform: arm-linux
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-01-24 00:00:00.000000000 Z
14
+ date: 2024-01-30 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