ffi 1.17.3-x86_64-linux-gnu → 1.17.4-x86_64-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: 65acb1064f67f30081d38672fec92363723a98ecc594e861e53d6d5fa452af20
4
- data.tar.gz: 9d40f131b01afcfa894f1bbecedcb78a87e1e527225ac3a82ab3ea784b708ed8
3
+ metadata.gz: 7dd4de18c3a937fecfdf1bdba0408e2d8b3d693a001a2aa6e65fcdd65eefc23c
4
+ data.tar.gz: 2f77f1fd2c6d45146bf9009208c9acc10977f327428026c5def425ac3d6dff03
5
5
  SHA512:
6
- metadata.gz: 63930693078d669a1bed660e204071de7e820e8087719e7d6c0a0a4d9d5b8006d5351d4d29ad864834b98d97e68c5091fda3f22c30f14ff76035ba5fd3f46118
7
- data.tar.gz: cfac389fae6ec3d11991e00abb3cb0744d8113c427849d3ebf40eaf02a852c5c4e1beb5ddd6cf028f64de919de3341d81c48ae589ff37cfbf8174d716a5fd357
6
+ metadata.gz: eb0d9f66316a718c27fe2b25692cd04b00b23963147737c82d7bb65008ac8df000853d2ea483a767ab97ac21e9b3f4693761878ac2a54dce57625f154d5ee34a
7
+ data.tar.gz: 1ce4890f52c8102a0cda843f6a192f22ab4891b50fd32e30be89cd97118492a23edf8e8e16aeccd4cb6812892e30cf1d59d5c40c716463047329daee8cbc37a2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ 1.17.4 / 2026-03-26
2
+ -------------------
3
+
4
+ Fixed:
5
+ * Fix union by-value ABI mismatch with float and double types on ARM64 and X86_64.
6
+ See #1177 and #1178 for details.
7
+ * Exclude libffi files, which are unnecessary. #1176
8
+
9
+
1
10
  1.17.3 / 2025-12-29
2
11
  -------------------
3
12
 
@@ -18,7 +27,7 @@ Added:
18
27
  * Add missing FFI::Platform module and LastError signatures. #1169
19
28
 
20
29
  Removed:
21
- * Drop fat binary gems for Ruby-2.7
30
+ * Drop fat binary gems for Ruby < 3.0
22
31
  * Remove `FFI::TypesGenerator` from distributed gems. #1164
23
32
  * Remove libffi build dir after install, safing some install space. #1157
24
33
 
data/ffi.gemspec CHANGED
@@ -22,7 +22,9 @@ Gem::Specification.new do |s|
22
22
  end
23
23
 
24
24
  # Add libffi git files
25
- lfs = `git --git-dir ext/ffi_c/libffi/.git ls-files -z`.split("\x0")
25
+ lfs = `git --git-dir ext/ffi_c/libffi/.git ls-files -z`.split("\x0").reject do |f|
26
+ f =~ /^(\.|testsuite)/
27
+ end
26
28
  # Add autoconf generated files of libffi
27
29
  lfs += %w[ compile configure config.guess config.sub install-sh ltmain.sh missing fficonfig.h.in ]
28
30
  # Add automake generated files of libffi
data/lib/3.0/ffi_c.so CHANGED
Binary file
data/lib/3.1/ffi_c.so CHANGED
Binary file
data/lib/3.2/ffi_c.so CHANGED
Binary file
data/lib/3.3/ffi_c.so CHANGED
Binary file
data/lib/3.4/ffi_c.so CHANGED
Binary file
data/lib/4.0/ffi_c.so CHANGED
Binary file
data/lib/ffi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module FFI
2
- VERSION = '1.17.3'
2
+ VERSION = '1.17.4'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.17.3
4
+ version: 1.17.4
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Wayne Meissner