Skip to content

Commit a6970e3

Browse files
rust, kotlin and clojure fixes
1 parent db9a85b commit a6970e3

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

src/main/kotlin/BowtieSampsonSchemaValidatorLauncher.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -208,6 +208,9 @@ class BowtieSampsonSchemaValidatorLauncher(
208208
dialects = SUPPORTED_DIALECTS,
209209
issues = libraryIssues,
210210
source = librarySource,
211+
os = System.getProperty("os.name"),
212+
os_version = System.getProperty("os.version"),
213+
language_version = KotlinVersion.CURRENT.toString(),
211214
),
212215
),
213216
),

src/main/kotlin/Responses.kt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ class Implementation(
1717
val homepage: String,
1818
val issues: String,
1919
val source: String,
20+
val os: String,
21+
val os_version: String,
22+
val language_version: String,
2023
)
2124

2225
@Serializable

0 commit comments

Comments
 (0)