Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 4f2d802

Browse files
committed
prep for 0.14.0 release
1 parent e6e4666 commit 4f2d802

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -97,19 +97,19 @@ CallExecutor executor = new CallExecutor<>(config)
9797
<dependency>
9898
<groupId>com.evanlennick</groupId>
9999
<artifactId>retry4j</artifactId>
100-
<version>0.13.0</version>
100+
<version>0.14.0</version>
101101
</dependency>
102102
```
103103

104104
### SBT
105105

106106
```sbt
107-
libraryDependencies += "com.evanlennick" % "retry4j" % "0.13.0"
107+
libraryDependencies += "com.evanlennick" % "retry4j" % "0.14.0"
108108
```
109109
### Gradle
110110

111111
```groovy
112-
compile "com.evanlennick:retry4j:0.13.0"
112+
compile "com.evanlennick:retry4j:0.14.0"
113113
```
114114

115115
## Usage
@@ -118,7 +118,7 @@ compile "com.evanlennick:retry4j:0.13.0"
118118

119119
Retry4j does not require any external dependencies. It does require that you are using Java 8 or newer.
120120

121-
* Javadocs are hosted at: http://www.javadoc.io/doc/com.evanlennick/retry4j/0.13.0.
121+
* Javadocs are hosted at: http://www.javadoc.io/doc/com.evanlennick/retry4j/0.14.0.
122122
* Continuous integration results are available via Travis CI here: https://travis-ci.org/elennick/retry4j.
123123
* Code coverage information is available via Coveralls here: https://coveralls.io/github/elennick/retry4j.
124124
* Examples of Retry4j in use are documented here: https://github.com/elennick/retry4j-examples

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.evanlennick</groupId>
88
<artifactId>retry4j</artifactId>
9-
<version>0.14.0-SNAPSHOT</version>
9+
<version>0.14.0</version>
1010

1111
<name>${project.groupId}:${project.artifactId}</name>
1212
<description>Library for retrying Java logic.</description>
@@ -16,7 +16,7 @@
1616
<connection>scm:git:[email protected]:elennick/retry4j.git</connection>
1717
<developerConnection>scm:git:[email protected]:elennick/retry4j.git</developerConnection>
1818
<url>[email protected]:elennick/retry4j.git</url>
19-
<tag>retry4j-0.13.0</tag>
19+
<tag>retry4j-0.14.0</tag>
2020
</scm>
2121

2222
<licenses>

0 commit comments

Comments
 (0)