lxi_rb 0.10.4 → 0.10.5

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: ce2943f0315aa8e530c433bbd49e9c00d6f7ba20e8b391e8128b82b1dfde7329
4
- data.tar.gz: 9ec57b67c721e8c09b3bce26cceeb9613e6bd4388f7113e3abe0ea043b4917b4
3
+ metadata.gz: f2fd402ad4dc4bd81b67efe59b6770d467109bf1e4b106589eb0e7803573ada6
4
+ data.tar.gz: 27d035da26e1cbdad9a690210cf30daad02997618b3bbbf3c92b52ae2fa7e00f
5
5
  SHA512:
6
- metadata.gz: c0b9368b3e1b01f5e98642fc10288ce0ae9547882d15d8b66a376974d71ba539c8057de562d7f534c8a0198e6b984e421fad82554613028c025bd0b947ec45bf
7
- data.tar.gz: f22523961ab699880ddef4777f61bf8ff800f77b0ea932dd962f7225bdb67679f348eab65b974b85743969492f6414daac290f58b16aaefc730ae73132cdbd94
6
+ metadata.gz: e4733f40c3c8c1147fe0ba417d3ca316eee6562e81c1a3dd8cd0b93ed800c3a402e0c1af018df5c5460a9f8509569af3b02eeef9a741b66cf9a5456b3d4ae017
7
+ data.tar.gz: e094f1304bda11d3e09557fc31b643387d0f1621b41bf0f302ed700fea8aedaedf8bae74fb13e2d7b5233c85cfc2ee7a3b97c7655b66b68e55fd16612b58be33
data/CHANGELOG.md CHANGED
@@ -4,6 +4,12 @@
4
4
  All notable changes to this project will be documented in this file.
5
5
 
6
6
  - - -
7
+ ## [v0.10.5](https://github.com/robcarruthers/lxi_rb/compare/v0.10.4..v0.10.5) - 2023-06-29
8
+ #### Miscellaneous Tasks
9
+ - **(ffi)** Remove discover_if function - ([beeba82](https://github.com/robcarruthers/lxi_rb/commit/beeba8228094aa7cbb9c0ae0e0955a7e0b887885)) - [@robcarruthers](https://github.com/robcarruthers)
10
+
11
+ - - -
12
+
7
13
  ## [v0.10.4](https://github.com/robcarruthers/lxi_rb/compare/v0.10.3..v0.10.4) - 2023-06-28
8
14
  #### Miscellaneous Tasks
9
15
  - Add to LIBLXI search path - ([c6f329b](https://github.com/robcarruthers/lxi_rb/commit/c6f329b2a232b81dcd16bed201c493e42dc402ac)) - [@robcarruthers](https://github.com/robcarruthers)
data/lib/lxi/functions.rb CHANGED
@@ -25,7 +25,6 @@ module Lxi
25
25
  # Expose liblxi functions
26
26
  attach_function :init, :lxi_init, [], :int
27
27
  attach_function :discover, :lxi_discover, [LxiInfo.ptr, :int, :lxi_discover_type], :int
28
- attach_function :discover_if, :lxi_discover_if, [LxiInfo.ptr, :string, :int, :lxi_discover_type], :int
29
28
  attach_function :connect, :lxi_connect, %i[string int string int lxi_protocol_type], :int
30
29
  attach_function :__send, :lxi_send, %i[int string int int], :int
31
30
  attach_function :receive, :lxi_receive, %i[int pointer int int], :int
data/lib/lxi/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lxi
4
- VERSION = '0.10.4'
4
+ VERSION = '0.10.5'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lxi_rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.4
4
+ version: 0.10.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rob Carruthers
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-06-28 00:00:00.000000000 Z
11
+ date: 2023-06-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi