sqlite3 1.7.2-arm64-darwin → 1.7.3-arm64-darwin

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: ae89d2d55a48d9ff0e1b4ed11dd15558398e068778dd0e2c9cab237e721b8370
4
- data.tar.gz: 1c48caf015138efd7c978338ae5014a0a8c56fb5d2d80d361ec221e92de63626
3
+ metadata.gz: 1543c0413f88ae6b038ffc9427eb32b7082d0e22a4d80c89af555a50a4f5e117
4
+ data.tar.gz: c860d35d6390a534b56d1153f43e36e55ebb8bfe42a1ed7bed8b6d6a2c33a9d0
5
5
  SHA512:
6
- metadata.gz: e6546cff29c382b167e913cfcdacdbaef0098a135dfdf47e124cbf99d84453cae0c5ae324d7e23471cb9af43f1565353682a3694a27860f57aff24e5b960034a
7
- data.tar.gz: dd00ef5182f7273d68e2bd90e8d21fda8e12c4cdc30c2063e35b2667192b63d47cd1e1a486791a6bb56912299817cce4381b3fa1d040110783857b33a4b25529
6
+ metadata.gz: e1f292fa0ee47aa2eed4db12770f4a2c887336a3a936cd5c9f6b8c0e4ceb412a4a468a03814b1a0cb7fe654677b0074314c619552415f4f95d6e087fe60f2ceb
7
+ data.tar.gz: e3093fab8c4c841951e6131879f790b66fd793959cb99d0cc90f71a6ef334877250ecfd18d404d24e0ab2aac9a6265f235a4e7e0e83b40577daa5d616ca95724
data/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
- ## 1.7.2 / unreleased
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
4
11
 
5
12
  ### Dependencies
6
13
 
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
- # a54395aa2cf76b5b973fa420715b6108afedc4d8c0209c763fd2c1b517f8ad9f
4
+ # 1b02c58a711d15b50da8a1089e0f8807ebbdf3e674c714100eda9a03a69ac758
5
5
  #
6
- # $ sha3sum -a 256 ports/archives/sqlite-autoconf-3450100.tar.gz
7
- # a54395aa2cf76b5b973fa420715b6108afedc4d8c0209c763fd2c1b517f8ad9f ports/archives/sqlite-autoconf-3450100.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-3450100.tar.gz
10
- # cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a ports/archives/sqlite-autoconf-3450100.tar.gz
11
- :version: "3.45.1"
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-3450100.tar.gz"
14
- :sha256: "cd9c27841b7a5932c9897651e20b86c701dd740556989b01ca596fcfa3d49a0a"
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.2"
3
+ VERSION = "1.7.3"
4
4
 
5
5
  module VersionProxy
6
6
  MAJOR = 1
7
7
  MINOR = 7
8
- TINY = 2
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.2
4
+ version: 1.7.3
5
5
  platform: arm64-darwin
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-30 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