diff --git a/readme.md b/readme.md
index 27ca15f8e..3a993391b 100644
--- a/readme.md
+++ b/readme.md
@@ -1,6 +1,6 @@
# MapStruct - Java bean mappings, the easy way!
-_Version: 1.0.0.CR2, August 27th 2015_
+_Version: 1.0.0.Final, November 25th 2015_
## What is MapStruct?
@@ -16,6 +16,9 @@ Compared to dynamic mapping frameworks, MapStruct offers the following advantage
* Compile-time type safety: Only objects and attributes mapping to each other can be mapped, no accidental mapping of an order entity into a customer DTO etc.
* Self-contained code, no runtime dependencies
* Clear error-reports at build time, if entities or attributes can't be mapped
+* Mapping code is easy to debug (or edited by hand e.g. in case of a bug in the generator)
+
+MapStruct works in command line builds (plain javac, via Maven, Gradle, Ant etc.) and IDEs. For Eclipse, there is a dedicated plug-in under development (see https://github.com/mapstruct/mapstruct-eclipse) which goes beyond what's possible with an annotation processor, providing content assist for annotation attributes, quick fixes and more.
## Documentation and getting help
@@ -35,7 +38,7 @@ For Maven based projects add the following to your POM file in order to use MapS
...
- [current MapStruct version]
+ 1.0.0.Final
...
@@ -44,6 +47,12 @@ For Maven based projects add the following to your POM file in order to use MapS
mapstruct
${org.mapstruct.version}
+
+
+ org.mapstruct
+ mapstruct-jdk8
+ ${org.mapstruct.version}
+
...