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

Commit

Permalink
bumped versions
Browse files Browse the repository at this point in the history
  • Loading branch information
elennick committed Feb 10, 2018
1 parent 6334267 commit a36101a
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 @@ -96,19 +96,19 @@ CallExecutor executor = new CallExecutor<>(config)
<dependency>
<groupId>com.evanlennick</groupId>
<artifactId>retry4j</artifactId>
<version>0.10.0</version>
<version>0.11.0</version>
</dependency>
```

### SBT

```sbt
libraryDependencies += "com.evanlennick" % "retry4j" % "0.10.0"
libraryDependencies += "com.evanlennick" % "retry4j" % "0.11.0"
```
### Gradle

```groovy
compile "com.evanlennick:retry4j:0.10.0"
compile "com.evanlennick:retry4j:0.11.0"
```

## Usage
Expand All @@ -117,7 +117,7 @@ compile "com.evanlennick:retry4j:0.10.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.10.0.
* Javadocs are hosted at: http://www.javadoc.io/doc/com.evanlennick/retry4j/0.11.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.11.0-SNAPSHOT</version>
<version>0.11.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.10.0</tag>
<tag>retry4j-0.11.0</tag>
</scm>

<licenses>
Expand Down

0 comments on commit a36101a

Please sign in to comment.