Skip to content

Commit

Permalink
Release 2.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptzou committed Nov 26, 2018
1 parent 9889c64 commit ab0cfc2
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Aligner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '2.2.9'
version = '2.2.10'

description = """Aligner"""

Expand Down
2 changes: 1 addition & 1 deletion DrugResistance/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '2.2.9'
version = '2.2.10'

description = """DrugResistance"""

Expand Down
2 changes: 1 addition & 1 deletion TestResources/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '2.2.9'
version = '2.2.10'

description = """Test resources"""

Expand Down
2 changes: 1 addition & 1 deletion Utilities/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '2.2.9'
version = '2.2.10'

description = """Utilities"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.List;

import com.mashape.unirest.http.HttpResponse;
Expand Down Expand Up @@ -104,7 +105,7 @@ public static List<Sequence> fetchGenbank(Collection<String> accessions) {
.field("id", String.join(",", accessions))
.asBinary();
} catch (UnirestException e) {
throw new RuntimeException(e);
return Collections.emptyList();
}
return readStream(response.getBody());
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

package edu.stanford.hivdb.utilities;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
Expand Down
2 changes: 1 addition & 1 deletion WebApplications/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '2.2.9'
version = '2.2.10'

description = """WebApplications Maven Webapp"""

Expand Down
4 changes: 2 additions & 2 deletions WebApplications/src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 2.2.9
versionDate = 2018-10-19
version = 2.2.10
versionDate = 2018-11-26

0 comments on commit ab0cfc2

Please sign in to comment.