midi-events 0.7.0 → 0.7.1

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: c13a4a9b3a163e07110a439e8678e02c6be70db7fd011ac7bd2f358294d1e695
4
- data.tar.gz: cc831e0cdbbbe8336158556e02322be7a2a414eb1be6d18b769e77fb3a522d9e
3
+ metadata.gz: 602a3c78e6cf883d73da4f9c9d61ccfe4f0f3f45dd5f40a5f8839df56f7e810b
4
+ data.tar.gz: 3b962896e4ac3f52bec0eb51d99d374a16d7b623f13c9f821f345ed194477a03
5
5
  SHA512:
6
- metadata.gz: 45c9668f01f6c07f1e945b7c547e8aac6a5a681a293fd38859838042a6942b7f2ff3df41f44a72b75117ece9eea7a597a8b3808f4753d0597f0fc22127bd1aad
7
- data.tar.gz: ec9780f1cc53e3db31a708c426d9112b3b43adcd1aa588dd6d1f4f4148054cf49de23bec13be7d53134259c6c20a2a7c475e5448440fffa130ed84686881474b
6
+ metadata.gz: 2382f58d986e81ef9871f4db321b2267a9cb1f1095bbb4e0a272aed78c78c08ae3bfe0894894745be4aa446f9fc9024dcdefd15da0066c78a721487217b7ca05
7
+ data.tar.gz: f4a228f306c5bade9a7c31b00ec74868407f4c1e41efb7f1ecc4a32a5415b04bbb40bf7f402e09bc0b2ab7f32ccc04c589ee6cdf309ac4fb6b2ffce98561bd60
@@ -0,0 +1,17 @@
1
+ name: Notify Plugin Rebuild
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+
7
+ jobs:
8
+ notify:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Trigger nota-plugin rebuild
12
+ uses: peter-evans/repository-dispatch@v3
13
+ with:
14
+ token: ${{ secrets.PLUGIN_REBUILD_PAT }}
15
+ repository: javier-sy/nota-plugin
16
+ event-type: source-updated
17
+ client-payload: '{"repo": "${{ github.repository }}", "sha": "${{ github.sha }}"}'
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 | **TO DO** (by now [MIDI Communications](https://github.com/javier-sy/midi-communications) uses [midi-winm](http://github.com/arirusso/midi-winmm)) |
19
19
 
20
20
  This library is based on [Ari Russo's](http://github.com/arirusso) library [MIDI Message](https://github.com/arirusso/midi-message).
21
21
 
@@ -199,7 +199,7 @@ Thanks to [Ari Russo](http://github.com/arirusso) for his ruby library [MIDI Mes
199
199
 
200
200
  ## License
201
201
 
202
- [MIDI Events](https://github.com/javier-sy/midi-events) Copyright (c) 2021-2025 [Javier Sánchez Yeste](https://yeste.studio), licensed under LGPL 3.0 License
202
+ [MIDI Events](https://github.com/javier-sy/midi-events) Copyright (c) 2021-2026 [Javier Sánchez Yeste](https://yeste.studio), licensed under LGPL 3.0 License
203
203
 
204
204
  [MIDI Message](https://github.com/arirusso/midi-message) Copyright (c) 2011-2015 [Ari Russo](http://arirusso.com), licensed under Apache License 2.0 (see the file LICENSE.midi-message)
205
205
 
@@ -43,5 +43,5 @@
43
43
  # @note This library is part of the MusaDSL ecosystem
44
44
  # @note Based on Ari Russo's MIDI Message library with performance optimizations
45
45
  module MIDIEvents
46
- VERSION = '0.7.0'.freeze
46
+ VERSION = '0.7.1'.freeze
47
47
  end
data/midi-events.gemspec CHANGED
@@ -3,7 +3,7 @@ require_relative 'lib/midi-events/version'
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'midi-events'
5
5
  s.version = MIDIEvents::VERSION
6
- s.date = '2025-08-23'
6
+ s.date = '2026-09-07'
7
7
  s.summary = 'A Ruby simple library for creating MIDI Event Messages'
8
8
  s.description = 'MIDI Events is a library for creating MIDI Event Messages that can be sent to MIDI Instruments through other libraries such as midi-communications or unimidi'
9
9
  s.authors = ['Javier Sánchez Yeste']
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: midi-events
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Javier Sánchez Yeste
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-08-23 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: minitest
@@ -119,6 +119,7 @@ executables: []
119
119
  extensions: []
120
120
  extra_rdoc_files: []
121
121
  files:
122
+ - ".github/workflows/notify-plugin.yml"
122
123
  - ".gitignore"
123
124
  - ".version"
124
125
  - ".yardopts"