sqlite3 2.7.1-x86-linux-gnu → 2.7.2-x86-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: 780c77e0e301bfccb9a31dc23cbd35bbce7acfcd33844b12b78db2506bfaf193
4
- data.tar.gz: 50224c4330ac57bb33f6a0c9a579978709843298f4221eef648915e76927c6e3
3
+ metadata.gz: b29c43cf8e9455772e6466db76989389868b3826b50e29419da32358a4f0d5f3
4
+ data.tar.gz: 5fe4a61cca18b8fdc58103aab5e10669c9b04c9d9221208680de6ccb7ce9d60b
5
5
  SHA512:
6
- metadata.gz: e9aba8351f3d1edeb5bd05f1bcd7d7535d14d8faa4d0832a9d3c7954e78cd2b4110bc03023098b11749ef3ec93586b762cd93d6ed1716f213cc5c03ffd304c8d
7
- data.tar.gz: 2719577da8ff33e26b923a84cb4cdff36f0a7841fe223a008ced9021413b4325f889ab7c038a7ff7c4c0ede132940014ebb15700b4c3f0142ad498241f5d97ea
6
+ metadata.gz: c9b182307485f32694c474c3f30d1b76b3374e0806f0fa374b0093e3ecb3b5c93d31d12d94eaa8b548c14e1791fb52e1a834e2d46c2ec5c89fb5f074f55f2db0
7
+ data.tar.gz: 7165652a9b739c88f32cc35f89d9d27c51f8fc4ce236f3c56d9d59ee8c43887d89666b844376a4831bff2369699970151d6c5e22862f60c7b0360e0d255539ab
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: x86-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