libusb 0.7.1-x86-mingw32 → 0.7.2-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c5eaee13200735ec0c245f01a166d6b288562351687ca84d55ebf82739947be
4
- data.tar.gz: a7855b3dec9923bc15036c1bfdf3892283165a3ed50ae3af59ec1277cfa5b3c0
3
+ metadata.gz: ed8c6bb4aed45747e2f0f762ebde5a9c1d2f0b14b8d93731f636c3658bc51115
4
+ data.tar.gz: '0844353928accc0583c32b1b0a5506435aaae7cfa5d8434873913f5efc2520f2'
5
5
  SHA512:
6
- metadata.gz: 3ccf31aa140ea34ee19ecb27e537e1e3ffe22b0caf4ba5b4ef81fd14c4f279400116589a1912ae3ec04ce50bf76bd720e4805e39a8213bf0529581a9eed453ba
7
- data.tar.gz: c96f97716568bd138cdfadc1398ed8ba247ff492058ad080fef9aa96079c26a4d2725299772e5669761eaebae7cafc75189f27dbd4340e38758eae2a98df00e1
6
+ metadata.gz: d62cd3327887cfc0fc691134d2318dca0215cc0d872906753a24f8a1bf1bdc2cc78e9491d81ed7f61d7aa87725b065556eb3127864da612039f6c1bdaa810563
7
+ data.tar.gz: 0ab923c405330e08df2e0220a1bc44b33bb14a5b21d24b294795efdfd9fedb89a2388719648351f592f16e8e946caae0d82d5bd48923176ad6e5f73d1d058150
@@ -28,8 +28,8 @@ jobs:
28
28
  - x86-mingw32
29
29
  - x64-mingw-ucrt
30
30
  - x64-mingw32
31
- - x86-linux
32
- - x86_64-linux
31
+ # - x86-linux
32
+ # - x86_64-linux
33
33
 
34
34
  runs-on: ubuntu-latest
35
35
  env:
@@ -72,12 +72,12 @@ jobs:
72
72
  - os: windows
73
73
  ruby: "3.3"
74
74
  platform: x64-mingw-ucrt
75
- - os: ubuntu
76
- ruby: "2.5"
77
- platform: x86_64-linux
78
- - os: ubuntu
79
- ruby: "3.3"
80
- platform: x86_64-linux
75
+ # - os: ubuntu
76
+ # ruby: "2.5"
77
+ # platform: x86_64-linux
78
+ # - os: ubuntu
79
+ # ruby: "3.3"
80
+ # platform: x86_64-linux
81
81
 
82
82
  runs-on: ${{ matrix.os }}-latest
83
83
  steps:
data/History.md CHANGED
@@ -1,3 +1,11 @@
1
+ 0.7.2 / 2024-10-23
2
+ ------------------
3
+
4
+ Changed:
5
+ * Call libusb_set_log_cb only when available. #51
6
+ This was a regression leading to a crash on FreeBSD-14.1.
7
+
8
+
1
9
  0.7.1 / 2024-04-20
2
10
  ------------------
3
11
 
@@ -140,7 +140,9 @@ module LIBUSB
140
140
  if id # Is Context is about to be garbage collected?
141
141
  # In GC mode there's no way to call the registered collbacks, since they are GC'ed as well.
142
142
  # So disable callbacks now.
143
- Call.libusb_set_log_cb(self, nil, LOG_CB_CONTEXT)
143
+ if Call.respond_to?(:libusb_set_log_cb)
144
+ Call.libusb_set_log_cb(self, nil, LOG_CB_CONTEXT)
145
+ end
144
146
  Call.libusb_set_pollfd_notifiers(self, nil, nil, nil)
145
147
  end
146
148
  Call.libusb_exit(self)
@@ -15,5 +15,5 @@
15
15
 
16
16
  module LIBUSB
17
17
  # Library version of libusb for Ruby
18
- VERSION = "0.7.1"
18
+ VERSION = "0.7.2"
19
19
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: libusb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Lars Kanis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-04-20 00:00:00.000000000 Z
11
+ date: 2024-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi