Skip to content

Commit

Permalink
Merge pull request #241 from RADAR-base/release-0.5.13
Browse files Browse the repository at this point in the history
Release 0.5.13
  • Loading branch information
yatharthranjan authored Aug 20, 2020
2 parents 44452cb + 31014ef commit f9de17d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions java-sdk/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ repositories {
dependencies {
// Commons schemas (backend, passive remote monitoring app)
compile 'org.radarcns:radar-schemas-commons:0.5.11.1'
compile 'org.radarcns:radar-schemas-commons:0.5.13'
// Questionnaire schemas (active remote monitoring app)
compile 'org.radarcns:radar-schemas-tools:0.5.11.1'
compile 'org.radarcns:radar-schemas-tools:0.5.13'
}
```
Usually, you only need to include the schemas you actually need in your dependencies.
Expand Down
2 changes: 1 addition & 1 deletion java-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ subprojects {
apply plugin: 'idea'

// Configuration
version = '0.5.12'
version = '0.5.13'
group = 'org.radarcns'
ext.githubRepoName = 'RADAR-base/RADAR-Schemas'

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ public static void main(String... args) {
System.exit(1);
}

if (ns.getBoolean("help")) {
if (ns.getBoolean("help") != null && ns.getBoolean("help")) {
parser.printHelp();
System.exit(0);
}
Expand Down

0 comments on commit f9de17d

Please sign in to comment.