sqlite3 2.7.1-arm-linux-gnu → 2.7.2-arm-linux-gnu

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: c9bc8ac3e1f599e9a9a2c0362dc73a1e4272f0b9ee91fffafc29ae30fe22cbd3
4
- data.tar.gz: 7f4ab75b601578ad20c528c46c44f468a8e7895ab48aada41b474baaa799e581
3
+ metadata.gz: fbbe3d217aeac9903889b3ccf77b00d2ac0617952a35937177c27781f7ffbe4b
4
+ data.tar.gz: 0a0a550ab44006a05df012d02181141aacdeebaf118196d4c42167285746a527
5
5
  SHA512:
6
- metadata.gz: 6baa5cf1c9111f7f20a3e7709331fa4bb088e123a1f038b79a771e13766d00d684555705d94228e45f21a4c6493df1ee0ad9109ce6c6a590815b42b74ceee8e2
7
- data.tar.gz: 0a532de86aaebc27ae053da142990d906a0beee323545e4af6f7aea94c780330ef15dc726ce2994d531fa064d94da9b78eb10259ea2bbf19b8a569bed7ef69a8
6
+ metadata.gz: c58229a17f837a84ea99a524d83b450c8a47d47096725b0860928f9ee385d21f96b11fc1d3f2e277746ad62c559dfd2a1047847b035f3f3e81c7fb393b26cfcd
7
+ data.tar.gz: 8c7725855d7b3942e8541cd9d8c8d3e732ea932c19a891ca5203d83b79418adc046e5fecb04d7e2b797fbe26f182ea2f4944edd501dc1da914c8078329f0ceb2
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]
Binary file
Binary file
Binary file
Binary file
@@ -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: arm-linux-gnu
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