Skip to content

Commit

Permalink
Version 0.6.4
Browse files Browse the repository at this point in the history
  • Loading branch information
leventov committed Nov 1, 2014
1 parent 639b405 commit 932ea20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ Add to your Gradle build script:

dependencies {
// `jdk8` instead of `jdk6-7` if you use Java 8
compile 'net.openhft:koloboke-api-jdk6-7:0.6.3'
runtime 'net.openhft:koloboke-impl-jdk6-7:0.6.3'
compile 'net.openhft:koloboke-api-jdk6-7:0.6.4'
runtime 'net.openhft:koloboke-impl-jdk6-7:0.6.4'
}

Or Maven config (don't forget about jdk6-7/jdk8 suffix):
Expand All @@ -49,23 +49,19 @@ Or Maven config (don't forget about jdk6-7/jdk8 suffix):
<dependency>
<groupId>net.openhft</groupId>
<artifactId>koloboke-api-jdk6-7</artifactId>
<version>0.6.3</version>
<version>0.6.4</version>
</dependency>
<dependency>
<groupId>net.openhft</groupId>
<artifactId>koloboke-impl-jdk6-7</artifactId>
<version>0.6.3</version>
<version>0.6.4</version>
<scope>runtime</scope>
</dependency>
<dependencies>

Or similarly for your favourite build system.
Or download jars of [the latest release](https://github.com/OpenHFT/Koloboke/releases/latest).

**Temporary note:** currently the latest version of `koloboke-api-jdk8` and `koloboke-impl-jdk8`
is `0.6.2`, because `koloboke-api-jdk6-7:0.6.3` and `koloboke-impl-jdk6-7:0.6.3` contain only
a Java 6 specific fix.

Then you can start using collections. Replace all lines like

Map<Integer, Integer> map = new HashMap<>();
Expand Down
2 changes: 1 addition & 1 deletion lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ configure([apiProject, implProject]) {

configurePublishing(project, project.is(apiProject))
archivesBaseName = "koloboke-$project.name-jdk${libTargetJava == '6' ? '6-7' : '8'}"
version = '0.7-SNAPSHOT'
version = '0.6.4'
ext.apiVersion = '0.6'

poms*.whenConfigured { pom ->
Expand Down

0 comments on commit 932ea20

Please sign in to comment.