From 14c4d0faf74e772db368acd4ef35a38db2d2f3d0 Mon Sep 17 00:00:00 2001 From: Michel Kraemer Date: Tue, 15 Dec 2015 11:05:43 +0100 Subject: [PATCH] Bump up version number to 2.6.0 --- README.rst | 12 ++++++------ build.gradle | 12 ++++++------ 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.rst b/README.rst index 0e9ad07..96bdeb5 100644 --- a/README.rst +++ b/README.rst @@ -34,7 +34,7 @@ You may also use `Maven `_ to download bson4jackson:: de.undercouch bson4jackson - 2.5.0 + 2.6.0 @@ -42,17 +42,17 @@ If you're using `Gradle `_, you may add the following snippet to your ``build.gradle``:: dependencies { - compile 'de.undercouch:bson4jackson:2.5.0' + compile 'de.undercouch:bson4jackson:2.6.0' } For `sbt `_, add the following line to your project:: - val bson4jackson = "de.undercouch" % "bson4jackson" % "2.5.0" + val bson4jackson = "de.undercouch" % "bson4jackson" % "2.6.0" For `buildr `_ use the following snippet:: - compile.with 'de.undercouch:bson4jackson:jar:2.5.0' + compile.with 'de.undercouch:bson4jackson:jar:2.6.0' Compatibility ------------- @@ -69,14 +69,14 @@ Here's the compatibility matrix for the current library versions: ==================== =============== =============== =============== =============== =============== Library Jackson 2.6.x Jackson 2.5.x Jackson 2.4.x Jackson 2.3.x Jackson 2.2.x +-------------------- --------------- --------------- --------------- --------------- --------------- + bson4jackson 2.6.x Yes Yes Yes Yes Yes -------------------- --------------- --------------- --------------- --------------- --------------- bson4jackson 2.5.x Yes Yes Yes Yes Yes -------------------- --------------- --------------- --------------- --------------- --------------- bson4jackson 2.4.x No No Yes Yes Yes -------------------- --------------- --------------- --------------- --------------- --------------- bson4jackson 2.3.x No No No Yes Yes --------------------- --------------- --------------- --------------- --------------- --------------- - bson4jackson 2.2.x No No No No Yes ==================== =============== =============== =============== =============== =============== If you're looking for a version compatible to Jackson 1.x, please use diff --git a/build.gradle b/build.gradle index e5b9d16..a89b35d 100644 --- a/build.gradle +++ b/build.gradle @@ -35,9 +35,9 @@ String junit = 'junit:junit:4.11' String mongoDbJavaDriver = 'org.mongodb:mongo-java-driver:2.11.2' dependencies { - compile jacksonCore + '2.6.3' - compile jacksonAnnotations + '2.6.3' - compile jacksonDatabind + '2.6.3' + compile jacksonCore + '2.6.4' + compile jacksonAnnotations + '2.6.4' + compile jacksonDatabind + '2.6.4' testCompile junit testCompile mongoDbJavaDriver @@ -65,9 +65,9 @@ dependencies { integrationTest25 jacksonAnnotations + '2.5.0' integrationTest25 jacksonDatabind + '2.5.0' - integrationTest26 jacksonCore + '2.6.3' - integrationTest26 jacksonAnnotations + '2.6.3' - integrationTest26 jacksonDatabind + '2.6.3' + integrationTest26 jacksonCore + '2.6.4' + integrationTest26 jacksonAnnotations + '2.6.4' + integrationTest26 jacksonDatabind + '2.6.4' } jar {