diff --git a/readme.md b/readme.md
index c0f798af8..7903ddeb8 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,6 @@
# MapStruct - Java bean mappings, the easy way!
-[](https://central.sonatype.com/search?q=g:org.mapstruct%20v:1.6.0)
+[](https://central.sonatype.com/search?q=g:org.mapstruct%20v:1.6.2)
[](https://central.sonatype.com/search?q=g:org.mapstruct)
[](https://github.com/mapstruct/mapstruct/blob/main/LICENSE.txt)
@@ -65,7 +65,7 @@ For Maven-based projects, add the following to your POM file in order to use Map
```xml
...
- 1.6.0
+ 1.6.2
...
@@ -111,10 +111,10 @@ plugins {
dependencies {
...
- implementation 'org.mapstruct:mapstruct:1.6.0'
+ implementation 'org.mapstruct:mapstruct:1.6.2'
- annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.0'
- testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.6.0' // if you are using mapstruct in test code
+ annotationProcessor 'org.mapstruct:mapstruct-processor:1.6.2'
+ testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.6.2' // if you are using mapstruct in test code
}
...
```