From 0e902d6412d07d27a8efb2b72ec72ebcbbced55e Mon Sep 17 00:00:00 2001 From: Filip Hrisafov Date: Sun, 11 Oct 2020 10:00:24 +0200 Subject: [PATCH] Update versions in readme to 1.4.1.Final --- readme.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/readme.md b/readme.md index f92ea452b..c39a408ac 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # MapStruct - Java bean mappings, the easy way! -[![Latest Stable Version](https://img.shields.io/badge/Latest%20Stable%20Version-1.4.0.Final-blue.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final) +[![Latest Stable Version](https://img.shields.io/badge/Latest%20Stable%20Version-1.4.1.Final-blue.svg)](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct%20AND%20v%3A1.*.Final) [![Latest Version](https://img.shields.io/maven-central/v/org.mapstruct/mapstruct-processor.svg?maxAge=3600&label=Latest%20Release)](http://search.maven.org/#search%7Cga%7C1%7Cg%3Aorg.mapstruct) [![License](https://img.shields.io/badge/License-Apache%202.0-yellowgreen.svg)](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.0.Final + 1.4.1.Final ... @@ -119,10 +119,10 @@ apply plugin: 'net.ltgt.apt-eclipse' dependencies { ... - compile 'org.mapstruct:mapstruct:1.4.0.Final' + compile 'org.mapstruct:mapstruct:1.4.1.Final' - annotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Final' - testAnnotationProcessor 'org.mapstruct:mapstruct-processor:1.4.0.Final' // if you are using mapstruct in test code + 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 } ... ```