Update MIDI message handling and version increment

Refactored MIDI message classes to improve modularity and flexibility, introducing separate classes for distinct MIDI message types. Updated `build.gradle.kts` version to `0.2.0` to reflect these changes. Removed `.idea/.name` file as part of cleanup.
This commit is contained in:
2024-12-16 20:13:41 +01:00
parent 00d8a67ed0
commit a592e91882
8 changed files with 188 additions and 5 deletions

View File

@@ -8,7 +8,7 @@ plugins {
}
group = "nl.astraeus"
version = "0.2.0"
version = "0.3.0"
repositories {
mavenCentral()
@@ -28,11 +28,23 @@ kotlin {
api("nl.astraeus:typed-byte-arrays:0.2.6")
}
}
val commonTest by getting
val commonTest by getting {
dependencies {
implementation(kotlin("test-common"))
}
}
val jvmMain by getting
val jvmTest by getting
val jvmTest by getting {
dependencies {
implementation(kotlin("test"))
}
}
val jsMain by getting
val jsTest by getting
val jsTest by getting {
dependencies {
implementation(kotlin("test-js"))
}
}
}
}