set up release

This commit is contained in:
Grahame Grieve 2023-10-17 08:37:43 +11:00
parent 08c1aabb9d
commit ae037cb5d6
3 changed files with 17 additions and 3 deletions

View File

@ -1,7 +1,10 @@
## Validator Changes
* no changes
* Fix bug processing value sets containing URLs
## Other code changes
* no changes
* Add initial support for http://hl7.org/fhir/tools/StructureDefinition/type-profile-style
* More work on sql-on-fhir implementation
* Allow for type parameter to custom functions in FHIRPath
* Fix bugs in processing current packages for XIG

View File

@ -145,6 +145,17 @@ public class JsonObject extends JsonElement {
}
}
public JsonObject set(String name, long value) throws JsonException {
check(name != null, "Name is null");
JsonProperty p = propMap.get(name);
if (p != null) {
p.setValue(new JsonNumber(value));
return this;
} else {
return add(name, new JsonNumber(value));
}
}
public JsonElement get(String name) {
if (propMap.containsKey(name)) {
return propMap.get(name).getValue();

View File

@ -20,7 +20,7 @@
<properties>
<guava_version>32.0.1-jre</guava_version>
<hapi_fhir_version>6.4.1</hapi_fhir_version>
<validator_test_case_version>1.4.11-SNAPSHOT</validator_test_case_version>
<validator_test_case_version>1.4.11</validator_test_case_version>
<jackson_version>2.15.2</jackson_version>
<junit_jupiter_version>5.9.2</junit_jupiter_version>
<junit_platform_launcher_version>1.8.2</junit_platform_launcher_version>