ffi 1.9.24-x86-mingw32 → 1.9.25-x86-mingw32

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/README.md +2 -0
  4. data/lib/ffi/version.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3b960fbb134a42c541229f2a60be94939cf1ac3546352c05f418bcdf5afde955
4
- data.tar.gz: b5cd35febd4ca20c81a93826dfc3f61f17f6b15226b0968d85960594549a980c
3
+ metadata.gz: f748409e2d57bd216ecb102ce767c9f0088c8d3740a7a7ee23d797d7a97fdd7b
4
+ data.tar.gz: 0f5a9fa69528800fe2de3e023595ccd98cab5e1a423fdc78181a00c1c1c2cae2
5
5
  SHA512:
6
- metadata.gz: e21689de8843c19cba18c7021cbfa4800bde552f8c72c1ffb884563035b96daa791cfd536e0d15e16614fba9e9feebe08ebc1683d891cf6ed890699b26e44c57
7
- data.tar.gz: 146bba9c072de66ef1f05c4cf34e36ad1fe0a621a78ce0fd2d0ae5ff44af9d68d4f96242281c265cb02c636707a8b239c0dafcc573ce007243e9604fd0e1302e
6
+ metadata.gz: 23b977b1156fcbf006766db87e0e1f605bad125c2ff094bd0d5ea727fb5008841ecffee5ba0de663b70f8eb96ad2b4a4a5f1d8efa9c589865179895e4ddd1938
7
+ data.tar.gz: 1421cf16a2bc29ea42b48199849bdd382f6c1d435889c3ac837849436a887c1d290149dcf9e4b5ca10a5b92e0206702f91ba6a501f763ed08498035583681709
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ 1.9.25 / 2018-06-03
2
+ -------------------
3
+
4
+ Changed:
5
+ * Revert closures via libffi.
6
+ This re-adds ClosurePool and fixes compat with SELinux enabled systems. #621
7
+
8
+
1
9
  1.9.24 / 2018-06-02
2
10
  -------------------
3
11
 
data/README.md CHANGED
@@ -43,6 +43,8 @@ At a minimum, you will need:
43
43
  * A C compiler (e.g. Xcode on OSX, gcc on everything else)
44
44
  * libffi development library - this is commonly in the libffi-dev or libffi-devel
45
45
 
46
+ On Linux systems running with [PaX](https://en.wikipedia.org/wiki/PaX) (Gentoo, Alpine, etc.) FFI may trigger `mprotect` errors. You may need to disable [mprotect](https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options#Restrict_mprotect.28.29) for ruby (`paxctl -m [/path/to/ruby]`) for the time being until a solution is found.
47
+
46
48
  ## Installation
47
49
 
48
50
  From rubygems:
data/lib/ffi/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module FFI
2
- VERSION = '1.9.24'
2
+ VERSION = '1.9.25'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ffi
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.24
4
+ version: 1.9.25
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Wayne Meissner
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-02 00:00:00.000000000 Z
11
+ date: 2018-06-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake