Skip to content

Commit

Permalink
Bump up version number to 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
michel-kraemer committed Jan 7, 2018
1 parent 40a5a5c commit cc84e3a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ You may also use [Maven](http://maven.apache.org/) to download bson4jackson:
<dependency>
<groupId>de.undercouch</groupId>
<artifactId>bson4jackson</artifactId>
<version>2.8.0</version>
<version>2.9.0</version>
</dependency>
</dependencies>
```
Expand All @@ -41,28 +41,28 @@ following snippet to your `build.gradle`:

```gradle
dependencies {
compile 'de.undercouch:bson4jackson:2.8.0'
compile 'de.undercouch:bson4jackson:2.9.0'
}
```

## Compatibility

bson4jackson 2.x is compatible to Jackson 2.x and higher. Due to some
compatibility issues, both libraries' major and minor version numbers
have to match. That means you have to use at least bson4jackson 2.1
should match. That means you should use at least bson4jackson 2.1
if you use Jackson 2.1, bson4jackson 2.2 if you use Jackson 2.2, etc.
I will try to keep bson4jackson up to date. If there is a compatibility
issue I will update bson4jackon, usually within a couple of days after
the new Jackson version has been released.
issue I will update it, usually within a couple of days after the new
Jackson version has been released.

Here's the compatibility matrix for the current library versions:

Library | Jackson 2.8.x | Jackson 2.7.x | Jackson 2.6.x | Jackson 2.5.x | Jackson 2.4.x
Library | Jackson 2.9.x | Jackson 2.8.x | Jackson 2.7.x | Jackson 2.6.x | Jackson 2.5.x
:----------------------|:-------------:|:-------------:|:-------------:|:-------------:|:-------------:
**bson4jackson 2.9.x** | Yes | Yes | Yes | Yes | Yes
**bson4jackson 2.8.x** | Yes | Yes | Yes | Yes | Yes
**bson4jackson 2.7.x** | No | Yes | Yes | Yes | Yes
**bson4jackson 2.6.x** | No | No | Yes | Yes | Yes
**bson4jackson 2.5.x** | No | No | No | Yes | Yes
**bson4jackson 2.7.x** | Yes | Yes | Yes | Yes | Yes
**bson4jackson 2.6.x** | No | No | No | Yes | Yes

If you're looking for a version compatible to Jackson 1.x, please use
bson4jackson 1.3.0. It's the last version for the 1.x branch.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'

version = '2.8.0'
version = '2.9.0'
group = 'de.undercouch'
sourceCompatibility = '1.7'
targetCompatibility = '1.7'
Expand Down

0 comments on commit cc84e3a

Please sign in to comment.