Skip to content

Commit

Permalink
Upgrade to strata 2.9.4 (closes #81)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcwrobel committed Apr 4, 2021
1 parent 3550b77 commit 200815c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 13 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This new release includes :

- Use `maven-enforcer-plugin` to prevent the project to be build with incompatible tools (#72).
- Upgrade to `guava` [30.1.1](https://github.com/google/guava/releases/tag/v30.1.1) (#79).
- Upgrade to `strata` [2.9.0](https://github.com/OpenGamma/Strata/releases/tag/v2.9.0) (#74).
- Upgrade to `strata` [2.9.4](https://github.com/OpenGamma/Strata/releases/tag/v2.9.4) (#81).
- Upgrade to `parent` [2.4.0](https://github.com/marcwrobel/parent/releases/tag/v2.4.0) (#76).
- Upgrade to `nv-i18n` [1.28](https://github.com/TakahikoKawasaki/nv-i18n/blob/master/CHANGES.md#128-2021-03-16) (#80).

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

<guava.version>30.1.1-jre</guava.version>
<nv-i18n.version>1.28</nv-i18n.version>
<strata.version>2.9.0</strata.version>
<strata.version>2.9.4</strata.version>
</properties>

<dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package fr.marcwrobel.jbanking.calendar;

import java.time.LocalDate;
import org.junit.jupiter.api.Test;

class TokyoCalendarTest extends CalendarTestSupport {
Expand All @@ -12,15 +11,6 @@ protected TokyoCalendarTest() {
// using strata-basics helps us keeping the definition up-to-date
@Test
void ensureConsistencyWithStrata() {
this.checkWithStrata(
"JPTO",
// excluded - Olympics dates are wrong in Strata -
// https://github.com/marcwrobel/jbanking/issues/77
LocalDate.of(2021, 7, 19),
LocalDate.of(2021, 7, 22),
LocalDate.of(2021, 7, 23),
LocalDate.of(2021, 8, 9),
LocalDate.of(2021, 8, 11),
LocalDate.of(2021, 10, 11));
this.checkWithStrata("JPTO");
}
}

0 comments on commit 200815c

Please sign in to comment.