Skip to content

Commit

Permalink
Release 3.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptzou committed Sep 1, 2023
1 parent 7c351f2 commit c83d97b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .latest-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20230823213033
20230901134437
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '3.4.5'
version = '3.4.6'

sourceCompatibility = 15
targetCompatibility = 15
Expand Down
2 changes: 1 addition & 1 deletion sierra-core
2 changes: 1 addition & 1 deletion sierra-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'edu.stanford.hivdb'
version = '3.4.5'
version = '3.4.6'

description = """Sierra Unit Tests"""

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,14 @@ public void testGetAmbiguousCodons() {
List<Mutation<HIV>> mutations = new ArrayList<>();
mutations.add(hiv.parseMutationString("RT215V"));
mutations.add(hiv.parseMutationString("RT67N"));
// AHT is the codon for triggering isAmbiguous() returning true
mutations.add(hiv.parseMutationString("RT123INT:AHT"));

MutationSet<HIV> mSet = new MutationSet<HIV>(mutations);
assertNotNull(mSet.getAmbiguousCodons());
assertEquals(
new MutationSet<>(hiv.parseMutationString("RT123INT")),
mSet.getAmbiguousCodons()
);
}

@Test
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 3.4.5
versionDate = 2023-08-22
version = 3.4.6
versionDate = 2023-09-01

0 comments on commit c83d97b

Please sign in to comment.