sqlite3 2.7.1-x86_64-linux-musl → 2.7.2-x86_64-linux-musl

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: 2e9d55a47e46eae1eb19cc3f1c45a49426c747c37d787da46b4c24743e788d75
4
- data.tar.gz: 53337de2eb651f2b9a8363c0e77a3260405f584b98b5fd9e5b58a95412feea80
3
+ metadata.gz: 2a1f5a757b3dfefe2bcf37636a49a573204cd28744b3b8f376b1e08c5f394041
4
+ data.tar.gz: 9f01df472f9a5216c6b65b9f1c059f558fa9c4892f208f660c684cc427ecfe0d
5
5
  SHA512:
6
- metadata.gz: a91fc85f911be6fa64b76fba2187689a6648759776837b0d05d5ec93c5960f2a806a84e07157401466c1ce49b2285b9fdfa2d815e808d6e1d0f9c60173aa87a4
7
- data.tar.gz: 13ddf49ac6c908c15d28e96a7457119e1cc6f7e8174ef615bf61868f78ebd7c082226f8d995c8ffea4a7ed1a3e1a962f5f88878fed5a5e5657856e2d7fbc00f3
6
+ metadata.gz: 9c1bfc8bd6cb102cc5ba33c5d53bd1ac83080550ca94273a496c88b927be4814faf72bee2153cd8ef2eaf2185931de12baf7171106936eae340e1a321986b9a4
7
+ data.tar.gz: e9206beb7a50cd6fcc3c83b6adff0239322d3db8262de453be5c045ea90b4233c48c1c68722fd8b98386d6dee2dde737a2393550de1f30b1698aa3da7eec4c77
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # sqlite3-ruby Changelog
2
2
 
3
+ ## 2.7.2 / 2025-07-05
4
+
5
+ - Backport a [fix](https://sqlite.org/src/info/64f5f14322) to the vendored SQLite to support compilation on Rocky Linux. See the [SQLite forum post](https://sqlite.org/forum/forumpost/44a58c8073) for more details. #634, #635 @flavorjones
6
+
7
+
3
8
  ## 2.7.1 / 2025-06-30
4
9
 
5
10
  - Vendored sqlite is updated to [v3.50.2](https://sqlite.org/releaselog/3_50_2.html) (from v3.50.1). #633 @flavorjones
@@ -194,6 +194,10 @@ module Sqlite3
194
194
  RbConfig::CONFIG["target_os"].include?("darwin")
195
195
  end
196
196
 
197
+ def windows?
198
+ RbConfig::CONFIG["target_os"].match?(/mingw|mswin/)
199
+ end
200
+
197
201
  def print_help
198
202
  print(<<~TEXT)
199
203
  USAGE: ruby #{$PROGRAM_NAME} [options]
@@ -1,4 +1,4 @@
1
1
  module SQLite3
2
2
  # (String) the version of the sqlite3 gem, e.g. "2.1.1"
3
- VERSION = "2.7.1"
3
+ VERSION = "2.7.2"
4
4
  end
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: 2.7.1
4
+ version: 2.7.2
5
5
  platform: x86_64-linux-musl
6
6
  authors:
7
7
  - Jamis Buck
@@ -10,7 +10,7 @@ authors:
10
10
  - Mike Dalessio
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2025-06-30 00:00:00.000000000 Z
13
+ date: 2025-07-05 00:00:00.000000000 Z
14
14
  dependencies: []
15
15
  description: |
16
16
  Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org). Precompiled