midi-communications 0.7.1 → 0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21b452b0402e76c284ff8e74011e54e193528f27eccc6e67e03d90be46eeaf98
4
- data.tar.gz: e5bc3c0d00284f259f2808fe2e3f6b231eadea633c6cf7bf6a9217f49cdeb0d5
3
+ metadata.gz: bbb85e75a1bcdcbf39a0e21b321b8b32dbc0d9793bd00f6af0725fff3c79fbfe
4
+ data.tar.gz: a4f4e07ce4219d11351396374da4f73eec0c0c467a5da9bd870747d6646d0f62
5
5
  SHA512:
6
- metadata.gz: 86c68969777a5d3322ffab60927763a39b742149746165251ae51cecb6f3c718daa0f3043bd37f7386fcb60db5a787ad5a9d8df66c4ee45287ea5ab74914b22d
7
- data.tar.gz: fb2441905249105c97d21f648a2fb347a702de332cde9d02013dc4b2b239341f1eee76d0b4faaa2dfdb5ee52552cf7e179e7b269feadc6c7fd7a542a60f16a47
6
+ metadata.gz: 41a6ac7356ea382723ed1afdf0ca1456fa897139c49e647e7f123c7d997181920a81478082f2bb7818857b7b1bac39db0d8b9f63b92b899280863b1b34e2a26f
7
+ data.tar.gz: dc9779ddba2bcec9811eb8a5ead8599e1bddaa9f30d62bb6357b40b0be92462347456c3e14e29fd7971ae76d2bcfd9548c87b13daea409fdd54fa5b09be72d90
data/README.md CHANGED
@@ -13,9 +13,9 @@ This library is part of a suite of Ruby libraries for MIDI:
13
13
  | MIDI Data parsing | [MIDI Parser](https://github.com/javier-sy/midi-parser) |
14
14
  | MIDI communication with Instruments and Control Surfaces | [MIDI Communications](https://github.com/javier-sy/midi-communications) |
15
15
  | Low level MIDI interface to MacOS | [MIDI Communications MacOS Layer](https://github.com/javier-sy/midi-communications-macos) |
16
+ | Low level MIDI interface to Windows | [MIDI Communications Windows Layer](https://github.com/javier-sy/midi-communications-windows) |
16
17
  | Low level MIDI interface to Linux | **TO DO** (by now [MIDI Communications](https://github.com/javier-sy/midi-communications) uses [alsa-rawmidi](http://github.com/arirusso/alsa-rawmidi)) |
17
18
  | Low level MIDI interface to JRuby | **TO DO** (by now [MIDI Communications](https://github.com/javier-sy/midi-communications) uses [midi-jruby](http://github.com/arirusso/midi-jruby))|
18
- | Low level MIDI interface to Windows | [MIDI Communications Windows Layer](https://github.com/javier-sy/midi-communications-windows) |
19
19
 
20
20
  This library is based on [Ari Russo's](http://github.com/arirusso) library [UniMIDI](https://github.com/arirusso/unimidi).
21
21
 
@@ -1,4 +1,4 @@
1
1
  module MIDICommunications
2
2
  # Current version of the midi-communications gem.
3
- VERSION = '0.7.1'.freeze
3
+ VERSION = '0.8.0'.freeze
4
4
  end
@@ -3,7 +3,7 @@ require_relative 'lib/midi-communications/version'
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'midi-communications'
5
5
  s.version = MIDICommunications::VERSION
6
- s.date = '2026-09-06'
6
+ s.date = '2026-09-07'
7
7
  s.summary = 'Platform independent realtime MIDI input and output for Ruby'
8
8
  s.description = 'Access MIDI devices for MacOS, Linux (wip), Windows (wip) and JRuby (wip).'
9
9
  s.authors = ['Javier Sánchez Yeste']
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
27
27
  # does not apply. A layer that shipped compiled binaries per platform could
28
28
  # not be declared this way.
29
29
  s.add_runtime_dependency 'midi-communications-macos', '~> 0.7'
30
- s.add_runtime_dependency 'midi-communications-windows', '~> 0.0.1'
30
+ s.add_runtime_dependency 'midi-communications-windows', '~> 0.1'
31
31
  # s.add_runtime_dependency 'alsa-rawmidi', '~> 0.3', '>= 0.3.1'
32
32
  # s.add_runtime_dependency 'midi-jruby', '~> 0.1', '>= 0.1.4'
33
33
 
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: midi-communications
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Sánchez Yeste
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-09-06 00:00:00.000000000 Z
10
+ date: 2026-09-07 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: midi-communications-macos
@@ -29,14 +29,14 @@ dependencies:
29
29
  requirements:
30
30
  - - "~>"
31
31
  - !ruby/object:Gem::Version
32
- version: 0.0.1
32
+ version: '0.1'
33
33
  type: :runtime
34
34
  prerelease: false
35
35
  version_requirements: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: 0.0.1
39
+ version: '0.1'
40
40
  - !ruby/object:Gem::Dependency
41
41
  name: minitest
42
42
  requirement: !ruby/object:Gem::Requirement