Bump for 1.3.1

This commit is contained in:
Dave Syer
2021-01-08 17:39:23 +00:00
parent c0f66e9f59
commit 2e048d7621
2 changed files with 3 additions and 2 deletions

View File

@@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>1.3.1-SNAPSHOT</version>
<version>1.3.1</version>
<name>Spring Retry</name>
<description><![CDATA[Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exception, and with a fixed or exponential backoff.
]]></description>

View File

@@ -403,7 +403,7 @@ public class RecoverAnnotationRecoveryHandlerTests {
}
protected static class RecoverByRetryableName implements RecoverByRetryableNameInterface{
protected static class RecoverByRetryableName implements RecoverByRetryableNameInterface {
public int foo(String name) {
return 0;
@@ -431,4 +431,5 @@ public class RecoverAnnotationRecoveryHandlerTests {
public int barRecover(Throwable throwable, String name);
}
}