diff --git a/readme.md b/readme.md
index 45eeda27e..5fc839974 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,6 @@
# MapStruct - Java bean mappings, the easy way!
-[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final)
+[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final)
[](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct)
[](https://github.com/mapstruct/mapstruct/blob/master/LICENSE.txt)
@@ -68,7 +68,7 @@ For Maven-based projects, add the following to your POM file in order to use Map
```xml
...
- 1.4.1.Final
+ 1.4.2.Final
...
@@ -114,10 +114,10 @@ plugins {
dependencies {
...
- compile 'org.mapstruct:mapstruct:1.4.1.Final'
+ compile 'org.mapstruct:mapstruct:1.4.2.Final'
- annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.1.Final'
- testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.4.1.Final' // if you are using mapstruct in test code
+ annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final'
+ testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.4.2.Final' // if you are using mapstruct in test code
}
...
```