diff --git a/README.md b/README.md index c7866ee..844f730 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,10 @@ Part of the GA4GH Starter Kit. Open source reference implementation of the GA4GH [Data Repository Service (DRS) specification](https://github.com/ga4gh/data-repository-service-schemas) +### Note: +The current Starter Kit DRS has some experimental features added to it. It does not match any published DRS Specification. We refer to this version as `1.3.0experimental` in the starter kit documentation. + +This starter Kit will be re-visited and updated once the new DRS specification is released. ## Running the DRS service ### Docker @@ -189,6 +193,9 @@ Multiple datasets are currently contained in this repo for development and testi - see the [datasets page](./DATASETS.md#Phenopackets) for a list of `DRS IDs` for `DrsObjects` in the Phenopackets dataset ## Changelog +### v0.3.2 + +* Update the DRS specification version from `1.1.0` to `1.3.0experimental` in the service-info response and in the documentation. ### v0.3.1 diff --git a/build.gradle b/build.gradle index 1cbfd82..f7b99e2 100644 --- a/build.gradle +++ b/build.gradle @@ -36,7 +36,7 @@ configurations.all { archivesBaseName = 'ga4gh-starter-kit-drs' group 'org.ga4gh' -version '0.3.1' +version '0.3.2' repositories { // Use jcenter for resolving dependencies. @@ -102,4 +102,4 @@ jacocoTestReport { xml.enabled = true html.enabled = true } -} +} \ No newline at end of file diff --git a/src/main/java/org/ga4gh/starterkit/drs/constant/DrsServiceInfoDefaults.java b/src/main/java/org/ga4gh/starterkit/drs/constant/DrsServiceInfoDefaults.java index 5a5c307..a5b7315 100644 --- a/src/main/java/org/ga4gh/starterkit/drs/constant/DrsServiceInfoDefaults.java +++ b/src/main/java/org/ga4gh/starterkit/drs/constant/DrsServiceInfoDefaults.java @@ -54,7 +54,7 @@ public class DrsServiceInfoDefaults { /** * Default service version */ - public static final String VERSION = "0.3.1"; + public static final String VERSION = "0.3.2"; /** * Default service organization name diff --git a/src/test/resources/responses/service-info/show/00.json b/src/test/resources/responses/service-info/show/00.json index 6aa9751..8d8dd0a 100644 --- a/src/test/resources/responses/service-info/show/00.json +++ b/src/test/resources/responses/service-info/show/00.json @@ -1 +1 @@ -{"id":"org.ga4gh.starterkit.drs","name":"GA4GH Starter Kit DRS Service","description":"An open source, community-driven implementation of the GA4GH Data Repository Service (DRS) API specification.","contactUrl":"mailto:info@ga4gh.org","documentationUrl":"https://github.com/ga4gh/ga4gh-starter-kit-drs","createdAt":"2020-01-15T12:00:00Z","updatedAt":"2020-01-15T12:00:00Z","environment":"test","version":"0.3.1","type":{"group":"org.ga4gh","artifact":"drs","version":"1.3.0experimental"},"organization":{"name":"Global Alliance for Genomics and Health","url":"https://ga4gh.org"}} \ No newline at end of file +{"id":"org.ga4gh.starterkit.drs","name":"GA4GH Starter Kit DRS Service","description":"An open source, community-driven implementation of the GA4GH Data Repository Service (DRS) API specification.","contactUrl":"mailto:info@ga4gh.org","documentationUrl":"https://github.com/ga4gh/ga4gh-starter-kit-drs","createdAt":"2020-01-15T12:00:00Z","updatedAt":"2020-01-15T12:00:00Z","environment":"test","version":"0.3.2","type":{"group":"org.ga4gh","artifact":"drs","version":"1.3.0experimental"},"organization":{"name":"Global Alliance for Genomics and Health","url":"https://ga4gh.org"}} \ No newline at end of file