ffi-win32-extensions 1.0.4 → 1.1.0
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 +4 -4
- data/CHANGELOG.md +16 -6
- data/VERSION +1 -1
- data/ffi-win32-extensions.gemspec +2 -2
- metadata +11 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0fd5944a1972817de6ba102e320330126420088157c3403f968ded7650ba8bf6
|
|
4
|
+
data.tar.gz: f07493a6589044ae38038e2a5e5dea9dcb0f9d0f2127bd044b32ec218319b245
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 85549b2154bc2e29182ff48a592c6f0ffb961fb9668f42ea72ec62079353899b02af699d9a5627a09f754180d25f0e1e4d3c15c0decb1af6fbfbc2ead164a8fb
|
|
7
|
+
data.tar.gz: 14ed6c4ba0b046a7daa8e296b1d7553970abd735757afca66dbbb62d48c6504e15ad75800d1c20ab29f3ba12a2688742a9fbc2aa293c29a94001c82b4f223c1b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,34 @@
|
|
|
1
1
|
<!-- usage documentation: http://expeditor-docs.es.chef.io/configuration/changelog/ -->
|
|
2
2
|
|
|
3
3
|
# ffi-win32-extensions Changelog
|
|
4
|
-
<!-- latest_release 1.0
|
|
5
|
-
## [ffi-win32-extensions-1.0
|
|
4
|
+
<!-- latest_release 1.1.0 -->
|
|
5
|
+
## [ffi-win32-extensions-1.1.0](https://github.com/chef/ffi-win32-extensions/tree/ffi-win32-extensions-1.1.0) (2025-02-14)
|
|
6
6
|
|
|
7
7
|
#### Merged Pull Requests
|
|
8
|
-
-
|
|
8
|
+
- Updating ffi support [#12](https://github.com/chef/ffi-win32-extensions/pull/12) ([johnmccrae](https://github.com/johnmccrae))
|
|
9
9
|
<!-- latest_release -->
|
|
10
|
-
<!-- release_rollup since=1.0.
|
|
10
|
+
<!-- release_rollup since=1.0.4 -->
|
|
11
11
|
### Changes not yet released to rubygems.org
|
|
12
12
|
|
|
13
13
|
#### Merged Pull Requests
|
|
14
|
-
-
|
|
14
|
+
- Updating ffi support [#12](https://github.com/chef/ffi-win32-extensions/pull/12) ([johnmccrae](https://github.com/johnmccrae)) <!-- 1.1.0 -->
|
|
15
|
+
- Upgrade to GitHub-native Dependabot [#9](https://github.com/chef/ffi-win32-extensions/pull/9) ([dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) <!-- 1.0.5 -->
|
|
15
16
|
<!-- release_rollup -->
|
|
16
17
|
<!-- latest_stable_release -->
|
|
18
|
+
## [ffi-win32-extensions-1.0.4](https://github.com/chef/ffi-win32-extensions/tree/ffi-win32-extensions-1.0.4) (2020-09-09)
|
|
19
|
+
|
|
20
|
+
#### Merged Pull Requests
|
|
21
|
+
- Add style rake task [#8](https://github.com/chef/ffi-win32-extensions/pull/8) ([tas50](https://github.com/tas50))
|
|
22
|
+
- Move read_wstring method from chef to ffi-win32-extensions [#5](https://github.com/chef/ffi-win32-extensions/pull/5) ([kapilchouhan99](https://github.com/kapilchouhan99))
|
|
23
|
+
- Autocorrected the repository with Chefstyle
|
|
24
|
+
- Moved dev deps into a Gemfile
|
|
25
|
+
- Renamed CHANGES to CHANGELOG.md and converted it to markdown
|
|
26
|
+
<!-- latest_stable_release -->
|
|
27
|
+
|
|
17
28
|
## 1.0.3 - 21-Aug-2016
|
|
18
29
|
|
|
19
30
|
* The FFI::MemoryPointer#read_wide_string now defaults to its own size
|
|
20
31
|
for the +num_bytes+ argument.
|
|
21
|
-
<!-- latest_stable_release -->
|
|
22
32
|
|
|
23
33
|
## 1.0.2 - 20-Jun-2016
|
|
24
34
|
* Added the String#read_wide_string method.
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0
|
|
1
|
+
1.1.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = "ffi-win32-extensions"
|
|
3
|
-
spec.version = "1.0
|
|
3
|
+
spec.version = "1.1.0"
|
|
4
4
|
spec.authors = "Daniel J. Berger"
|
|
5
5
|
spec.license = "Apache 2.0"
|
|
6
6
|
spec.email = "djberg96@gmail.com"
|
|
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.test_files = Dir["test/test*"]
|
|
10
10
|
spec.files = Dir["**/*"].reject { |f| f.include?("git") }
|
|
11
11
|
|
|
12
|
-
spec.add_dependency("ffi")
|
|
12
|
+
spec.add_dependency("ffi", ">= 1.15.5", "<= 1.17.0")
|
|
13
13
|
|
|
14
14
|
spec.description = <<-EOF
|
|
15
15
|
The ffi-win32-extensions library adds additional methods to the FFI
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ffi-win32-extensions
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel J. Berger
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: ffi
|
|
@@ -16,14 +16,20 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version:
|
|
19
|
+
version: 1.15.5
|
|
20
|
+
- - "<="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.17.0
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
27
|
- - ">="
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
|
-
version:
|
|
29
|
+
version: 1.15.5
|
|
30
|
+
- - "<="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.17.0
|
|
27
33
|
description: |2
|
|
28
34
|
The ffi-win32-extensions library adds additional methods to the FFI
|
|
29
35
|
and String classes to aid in the development of FFI based libraries
|
|
@@ -66,7 +72,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
66
72
|
- !ruby/object:Gem::Version
|
|
67
73
|
version: '0'
|
|
68
74
|
requirements: []
|
|
69
|
-
rubygems_version: 3.
|
|
75
|
+
rubygems_version: 3.2.3
|
|
70
76
|
signing_key:
|
|
71
77
|
specification_version: 4
|
|
72
78
|
summary: Extends the FFI and String classes on MS Windows
|