Skip to content

Commit c4fea40

Browse files
committed
Make "tc" in HCERT Test optional
Fixes #39
1 parent 55917d6 commit c4fea40

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -317,6 +317,9 @@ If you are planning to use this library, we'll suggest to fork it (internally),
317317

318318
## Changelog
319319

320+
Version 1.1.1:
321+
- Make `tc` (`testFacility`) in HCERT Test optional
322+
320323
Version 1.1.0:
321324
- Try to parse as many dates and datetimes as possible
322325
- Perform a very relaxed schema validation by default

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
}
88

99
group = "ehn.techiop.hcert"
10-
version = "1.1.0"
10+
version = "1.1.1"
1111
java.sourceCompatibility = JavaVersion.VERSION_1_8
1212

1313
idea {

src/commonMain/kotlin/ehn/techiop/hcert/kotlin/data/Test.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ data class Test constructor(
3030
val resultPositive: ValueSetEntryAdapter,
3131

3232
@SerialName("tc")
33-
val testFacility: String,
33+
val testFacility: String? = null,
3434

3535
@SerialName("co")
3636
val country: String,

0 commit comments

Comments
 (0)