diff --git a/README.md b/README.md
index 55d5cbb0..7a9ce759 100644
--- a/README.md
+++ b/README.md
@@ -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):
@@ -49,12 +49,12 @@ Or Maven config (don't forget about jdk6-7/jdk8 suffix):
net.openhft
koloboke-api-jdk6-7
- 0.6.3
+ 0.6.4
net.openhft
koloboke-impl-jdk6-7
- 0.6.3
+ 0.6.4
runtime
@@ -62,10 +62,6 @@ Or Maven config (don't forget about jdk6-7/jdk8 suffix):
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 map = new HashMap<>();
diff --git a/lib/build.gradle b/lib/build.gradle
index 7af461d1..cadd7249 100644
--- a/lib/build.gradle
+++ b/lib/build.gradle
@@ -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 ->