Skip to content

Commit

Permalink
Release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ben-manes committed Jul 13, 2015
1 parent 5ee68b7 commit 6fce9ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[![Build Status](https://travis-ci.org/ben-manes/caffeine.svg)](https://travis-ci.org/ben-manes/caffeine)
[![Coverage Status](https://img.shields.io/coveralls/ben-manes/caffeine.svg)](https://coveralls.io/r/ben-manes/caffeine?branch=master)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.github.ben-manes.caffeine/caffeine/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.github.ben-manes.caffeine/caffeine)
[![JavaDoc](https://img.shields.io/badge/javadoc-1.2.0-brightgreen.svg)](http://www.javadoc.io/doc/com.github.ben-manes.caffeine/caffeine)
[![JavaDoc](https://img.shields.io/badge/javadoc-1.3.0-brightgreen.svg)](http://www.javadoc.io/doc/com.github.ben-manes.caffeine/caffeine)
[![License](http://img.shields.io/:license-apache-brightgreen.svg)](http://www.apache.org/licenses/LICENSE-2.0.html)

Caffeine is a [high performance][benchmarks] caching library based on Java 8. For more
Expand Down Expand Up @@ -46,12 +46,12 @@ In addition, Caffeine offers the following extensions:
Download from [Maven Central][maven] or depend via Gradle:

```gradle
compile 'com.github.ben-manes.caffeine:caffeine:1.2.0'
compile 'com.github.ben-manes.caffeine:caffeine:1.3.0'
// Optional extensions
compile 'com.github.ben-manes.caffeine:guava:1.2.0'
compile 'com.github.ben-manes.caffeine:jcache:1.2.0'
compile 'com.github.ben-manes.caffeine:tracing-async:1.2.0'
compile 'com.github.ben-manes.caffeine:guava:1.3.0'
compile 'com.github.ben-manes.caffeine:jcache:1.3.0'
compile 'com.github.ben-manes.caffeine:tracing-async:1.3.0'
```

Snapshots of the development version are available in
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ subprojects { proj ->
version.with {
major = 1 // incompatible API changes
minor = 3 // backwards-compatible additions
patch = 0 // backwards-compatible bug fixes
patch = 1 // backwards-compatible bug fixes
releaseBuild = rootProject.hasProperty('release')
}
archivesBaseName = path[1..-1].replaceAll(':', '-').toLowerCase()
Expand Down

0 comments on commit 6fce9ac

Please sign in to comment.