sqlite3 1.7.0-x86-linux → 1.7.2-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9574fd2c5d983fc5cfb196eee48892ede11fd0244cbb898e3872d3b0251a30e0
4
- data.tar.gz: 60e2ee98e5428cec701dcd771815ce8e38221a91ab82ddb43826053f3d2bd6c0
3
+ metadata.gz: 5d15b56bab7154d46514b0e2243e0f9dff2daf55cc04f5a2acc2ad57061372fc
4
+ data.tar.gz: 7eefd3bb3f4da81abfd0a29bafa76a51e286f68c6614340a69086875a37bc15a
5
5
  SHA512:
6
- metadata.gz: 254e234966309a76cc06ae24fd31d6ac113111ba60da44b79e86b8c7aea815af155b253fd09bdcf313df6e6fcc8c114c1c401c9c6fd51654c64ddffee3991477
7
- data.tar.gz: c14f2194d00bf00420f0b12268fcf434df024c9d05c8474189d5ff1cc57cea2746522033185086fb07fc738cd11ab52dfcfe36464fae513cd1660569e2041c0e
6
+ metadata.gz: 0e31e414429efe778e711c427c8f1319de0d4d45eac284abdb160b050a40eef63c29532e59f87f447dd7f13f6a928d4d1e606bbb0d3443ee9936125ef7c490ee
7
+ data.tar.gz: c88692c0dccba623f954c46897d5114155fc35823e12cd2fd675715e6d026241f4581514ea90c0a594c66e07263619d95f0d24afbaccc890de164bdb51a23454
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
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
+
10
+ ## 1.7.1 / 2024-01-24
11
+
12
+ ### Dependencies
13
+
14
+ - Vendored sqlite is updated to [v3.45.0](https://www.sqlite.org/releaselog/3_45_0.html). @flavorjones
15
+
16
+
3
17
  ## 1.7.0 / 2023-12-27
4
18
 
5
19
  ### Ruby
data/Gemfile CHANGED
@@ -2,7 +2,7 @@ source "https://rubygems.org"
2
2
 
3
3
  gemspec
4
4
 
5
- gem("minitest", "5.20.0")
5
+ gem("minitest", "5.21.2")
6
6
  gem("rake-compiler", "1.2.5")
7
7
  gem("rake-compiler-dock", "1.4.0")
8
8
  gem("rdoc", "6.6.2")
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
- # 6c427f0547e2f7babe636b748dd5d5a1f2f31601adadef7e2805e7d1f7171861
4
+ # a54395aa2cf76b5b973fa420715b6108afedc4d8c0209c763fd2c1b517f8ad9f
5
5
  #
6
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3440200.tar.gz
7
- # 6c427f0547e2f7babe636b748dd5d5a1f2f31601adadef7e2805e7d1f7171861 ports/archives/sqlite-autoconf-3440200.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-3440200.tar.gz
10
- # 1c6719a148bc41cf0f2bbbe3926d7ce3f5ca09d878f1246fcc20767b175bb407 ports/archives/sqlite-autoconf-3440200.tar.gz
11
- :version: "3.44.2"
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/2023/sqlite-autoconf-3440200.tar.gz"
14
- :sha256: "1c6719a148bc41cf0f2bbbe3926d7ce3f5ca09d878f1246fcc20767b175bb407"
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.0"
3
+ VERSION = "1.7.2"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 7
8
- TINY = 0
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.0
4
+ version: 1.7.2
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: 2023-12-27 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