sqlite3 1.7.1-aarch64-linux → 1.7.2-aarch64-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: 9265d919d062b91259bbf7f116227e9eb9a8de9fece59f7aa12d90da9047f295
4
- data.tar.gz: a19dc6715c35bbd97fa96102b2fc8554e7dbb19568f3bad3b64fac59e283f7b2
3
+ metadata.gz: b51cd5e0806f09bcc8af2c233aaf0b51b35023e9aee85d75be5fde5302a91026
4
+ data.tar.gz: e6e39a1c6894e6baaa0cfc2b8d5a4e77d80f583623f6571889f996e05ef9750d
5
5
  SHA512:
6
- metadata.gz: 99f91df35fa7989165bd338998361e6403a19f0f507d15fbadf9721dbf9dfa54cc7252163f9da71b97c03dbf5cf8185e718870766ef6e0c76a7346b5c9eb6a65
7
- data.tar.gz: 1b2f23989dab0bb82120931d366b9677d350e375151e3ebee28c6c9b9abbd85eaa5e5c15e10f8a575e20568cd01a301571e0c5345b5c6bc8cc4b08e67a18896c
6
+ metadata.gz: b60ec0d4c1d51606dd9000d976fa773bdfebd0faa666c1dd95ed2a5ea877ea0b006a2f0e659724a078af5a64ab7ec4cce5a25aa0799e81cebab0a2efc6622746
7
+ data.tar.gz: 3ca869c0091bc838d841c71317ac032d050ac8e09fc0f0810f9971aefbd48fb606a7f4c49aa7f4df9fe1523e39e3e1131cf5c7d30c30aeeb23d9ec0f221d3941
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: aarch64-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