Skip to content

Commit

Permalink
Bump up version number to 2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Dec 15, 2015
1 parent 2576722 commit 14c4d0f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions README.rst
Expand Up @@ -34,25 +34,25 @@ You may also use `Maven <http://maven.apache.org/>`_ to download bson4jackson::
<dependency>
<groupId>de.undercouch</groupId>
<artifactId>bson4jackson</artifactId>
<version>2.5.0</version>
<version>2.6.0</version>
</dependency>
</dependencies>

If you're using `Gradle <http://www.gradle.org/>`_, 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 <http://code.google.com/p/simple-build-tool/>`_,
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 <http://buildr.apache.org/>`_ use the following snippet::

compile.with 'de.undercouch:bson4jackson:jar:2.5.0'
compile.with 'de.undercouch:bson4jackson:jar:2.6.0'

Compatibility
-------------
Expand All @@ -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
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Expand Up @@ -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
Expand Down Expand Up @@ -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 {
Expand Down

0 comments on commit 14c4d0f

Please sign in to comment.