Skip to content

Commit

Permalink
prepare for 1.0.3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rholder committed Jan 16, 2013
1 parent 8515e4a commit 13186be
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
8 changes: 6 additions & 2 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
##1.0.3 - 2013-01-16
* Added time limit per attempt in a Retryer (dirkraft)
* Adding license text

##1.0.2 - 2012-11-22
* Added Gradle wrapper support
* Updated top-level package to com.github.rholder.retry

##1.0.0 - 2012-08-29
##1.0.1 - 2012-08-29
* Added Javadoc links
* Added exponential wait strategy and unit tests

##1.0.0 - 2012-08-26
* Initial stable release, packaging for Maven central, no changes from original source
* Initial stable release, packaging for Maven central, no changes from original source
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ that might be useful for situations where more well-behaved service polling is p
<dependency>
<groupId>com.github.rholder</groupId>
<artifactId>guava-retrying</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>

##Gradle

compile "com.github.rholder:guava-retrying:1.0.2"
compile "com.github.rholder:guava-retrying:1.0.3"

##Quickstart
A minimal sample of some of the functionality would look like:
Expand Down Expand Up @@ -76,3 +76,6 @@ prerequisites are [Git](https://help.github.com/articles/set-up-git) and JDK 1.6
The guava-retrying module is released under version 2.0 of the
[Apache License](http://www.apache.org/licenses/LICENSE-2.0).

##Contributors
* Jean-Baptiste Nizet (JB)
* Jason Dunkelberger (dirkraft)
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ apply plugin: 'signing'
sourceCompatibility = 1.6

group = 'com.github.rholder'
version = '1.0.3-SNAPSHOT'
version = '1.0.3'
ext.packaging = 'jar'

repositories {
Expand Down Expand Up @@ -107,4 +107,4 @@ uploadArchives {
}
}
}
}
}

0 comments on commit 13186be

Please sign in to comment.