sqlite3 1.7.0-x86_64-linux → 1.7.1-x86_64-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: 3b44bd098ab8c21c265dad4679309a83fe970fc95d611bfc32263b16489f8532
4
- data.tar.gz: 2c66387853fc7dedf494a0da2c4952f0d89cde228bac62b0439c87f426cfac81
3
+ metadata.gz: 3e6815b5eca54b00381d1ac323dcea1fa29b095f84c20da3a5b5d6ce34efe964
4
+ data.tar.gz: f6c7148a14590b004993adbfb02a7304d081cc98379480f4eb89e32997950719
5
5
  SHA512:
6
- metadata.gz: cbec9f6da24abd66356463d4392f0bd33ba3341309fa4d6fe37a566034587434a44d1c09e27fd8f30b5db1207904f17beb5552fb58d519ff56c2884aba9c005b
7
- data.tar.gz: fbc5df57ba9f9f4dc061105bdaee92b81a47702ca7cc80ce9436a4322c497cec5655a2ed537b8f8d5133056b53a06bd3ba923aab3ba265f62f389926c58aa466
6
+ metadata.gz: 53a0ca2c9b904d6bd34b9c00bccdc65aabebb725065df742e8fc2c8c0c5880fdc024c17384a6a5f239e7d47fa938e2741aa9449666d6e9e9639ab88123f9ee3c
7
+ data.tar.gz: ace56e0d2436acb492791180d040b605c7275eed84b89d635b01f54c6170772c06e0b4db71f77a6652b31f7edebff44aba658fd49ed106150ec2f77e23c9ff9f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 1.7.1 / 2024-01-24
4
+
5
+ ### Dependencies
6
+
7
+ - Vendored sqlite is update to [v3.45.0](https://www.sqlite.org/releaselog/3_45_0.html). @flavorjones
8
+
9
+
3
10
  ## 1.7.0 / 2023-12-27
4
11
 
5
12
  ### 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
+ # 9fc2a78088875ae7c112957d58ccc52b1a0a4afa34ac669290be42f352b1aa76
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-3450000.tar.gz
7
+ # 9fc2a78088875ae7c112957d58ccc52b1a0a4afa34ac669290be42f352b1aa76 ports/archives/sqlite-autoconf-3450000.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-3450000.tar.gz
10
+ # 72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436 ports/archives/sqlite-autoconf-3450000.tar.gz
11
+ :version: "3.45.0"
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-3450000.tar.gz"
14
+ :sha256: "72887d57a1d8f89f52be38ef84a6353ce8c3ed55ada7864eb944abd9a495e436"
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.1"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 7
8
- TINY = 0
8
+ TINY = 1
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.1
5
5
  platform: x86_64-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-24 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