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

Commit

Permalink
prep for 0.14.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
elennick committed Jul 16, 2018
1 parent e6e4666 commit 4f2d802
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -97,19 +97,19 @@ CallExecutor executor = new CallExecutor<>(config)
<dependency>
<groupId>com.evanlennick</groupId>
<artifactId>retry4j</artifactId>
<version>0.13.0</version>
<version>0.14.0</version>
</dependency>
```

### SBT

```sbt
libraryDependencies += "com.evanlennick" % "retry4j" % "0.13.0"
libraryDependencies += "com.evanlennick" % "retry4j" % "0.14.0"
```
### Gradle

```groovy
compile "com.evanlennick:retry4j:0.13.0"
compile "com.evanlennick:retry4j:0.14.0"
```

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

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

* Javadocs are hosted at: http://www.javadoc.io/doc/com.evanlennick/retry4j/0.13.0.
* Javadocs are hosted at: http://www.javadoc.io/doc/com.evanlennick/retry4j/0.14.0.
* Continuous integration results are available via Travis CI here: https://travis-ci.org/elennick/retry4j.
* Code coverage information is available via Coveralls here: https://coveralls.io/github/elennick/retry4j.
* Examples of Retry4j in use are documented here: https://github.com/elennick/retry4j-examples
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Expand Up @@ -6,7 +6,7 @@

<groupId>com.evanlennick</groupId>
<artifactId>retry4j</artifactId>
<version>0.14.0-SNAPSHOT</version>
<version>0.14.0</version>

<name>${project.groupId}:${project.artifactId}</name>
<description>Library for retrying Java logic.</description>
Expand All @@ -16,7 +16,7 @@
<connection>scm:git:git@github.com:elennick/retry4j.git</connection>
<developerConnection>scm:git:git@github.com:elennick/retry4j.git</developerConnection>
<url>git@github.com:elennick/retry4j.git</url>
<tag>retry4j-0.13.0</tag>
<tag>retry4j-0.14.0</tag>
</scm>

<licenses>
Expand Down

0 comments on commit 4f2d802

Please sign in to comment.