sqlite3 1.7.1-x86-linux → 1.7.3-x86-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: 3f0639d53a4315a6b1b369210ad4935211f6113b8b98617f6f9bca725b5d086a
4
- data.tar.gz: ea1ea03bb0b4af5b1c10202695a43c5c6480fc18b33dc9b6e5a6a3a16fac53f4
3
+ metadata.gz: 711262b97f1f162a0ddd91f770f2c42d6a29cefe56cc25820a9a347a18d5389b
4
+ data.tar.gz: 910e63043f2eb3717103c149949f5a289dcd91b54dfec63b20fe812f40563d1f
5
5
  SHA512:
6
- metadata.gz: 650bf8b51237558d6865280a9a8918fa22f8384ca4b069f40af3984cfc3a1ddd77c7136d11d110868521cb35ae7be760eafc71ccdcdbb075aa111ace6868a8df
7
- data.tar.gz: b550374b745028dfe00621cc7e0868c6aa932b00c53e0f097a9bb41c3dba63b0812c44550c8285126e260989d1f401c9e36b4a448c1414c621a7bed4cd7017c5
6
+ metadata.gz: 6bb0a06b698d0f0a3c5cc684cf34addd95989bca74eee6cf6ecfabfe6a171311d93f58418cd1d0b21c5836e40d351e8a93eaa8cb11bb4145b7acdde1fcda18b3
7
+ data.tar.gz: 4a055660eb2b2d2cb4ea1c041ac22b1bc51f00cc1646bbea0190a9a86b68cc75ddc30b1320c77a5ce737e2f2346e806315df19f3a04d1902bf1efce613882e8b
data/CHANGELOG.md CHANGED
@@ -1,10 +1,24 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.7.3 / 2024-03-15
4
+
5
+ ### Dependencies
6
+
7
+ - Vendored sqlite is updated to [v3.45.2](https://www.sqlite.org/releaselog/3_45_2.html). @flavorjones
8
+
9
+
10
+ ## 1.7.2 / 2024-01-30
11
+
12
+ ### Dependencies
13
+
14
+ - Vendored sqlite is updated to [v3.45.1](https://www.sqlite.org/releaselog/3_45_1.html). @flavorjones
15
+
16
+
3
17
  ## 1.7.1 / 2024-01-24
4
18
 
5
19
  ### Dependencies
6
20
 
7
- - Vendored sqlite is update to [v3.45.0](https://www.sqlite.org/releaselog/3_45_0.html). @flavorjones
21
+ - Vendored sqlite is updated to [v3.45.0](https://www.sqlite.org/releaselog/3_45_0.html). @flavorjones
8
22
 
9
23
 
10
24
  ## 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
+ # 1b02c58a711d15b50da8a1089e0f8807ebbdf3e674c714100eda9a03a69ac758
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-3450200.tar.gz
7
+ # 1b02c58a711d15b50da8a1089e0f8807ebbdf3e674c714100eda9a03a69ac758 ports/archives/sqlite-autoconf-3450200.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-3450200.tar.gz
10
+ # bc9067442eedf3dd39989b5c5cfbfff37ae66cc9c99274e0c3052dc4d4a8f6ae ports/archives/sqlite-autoconf-3450200.tar.gz
11
+ :version: "3.45.2"
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-3450200.tar.gz"
14
+ :sha256: "bc9067442eedf3dd39989b5c5cfbfff37ae66cc9c99274e0c3052dc4d4a8f6ae"
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.3"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 7
8
- TINY = 1
8
+ TINY = 3
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.3
5
5
  platform: x86-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-03-15 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