aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2015-01-26 14:00:26 +0100
committerReinier Zwitserloot <reinier@zwitserloot.com>2015-01-26 14:00:26 +0100
commit5c7493511dc3108c593617922cbc62285e4475f4 (patch)
treebec144054575a4716fbd767a9ac1c5a8c6f8a973
parent30beb498ca46772e60dd321a07e19be1d08d1e9a (diff)
downloadlombok-5c7493511dc3108c593617922cbc62285e4475f4.tar.gz
lombok-5c7493511dc3108c593617922cbc62285e4475f4.tar.bz2
lombok-5c7493511dc3108c593617922cbc62285e4475f4.zip
updated changelog
-rw-r--r--doc/changelog.markdown7
1 files changed, 0 insertions, 7 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 55a75fa0..2fb167c7 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -8,13 +8,6 @@ Lombok Changelog
* FEATURE: `@Builder` now supports adding the `@Singular` annotation to any field/parameter that represents a collection, which results in a method in the generated builder that takes in one element of that collection and adds it. Lombok takes care of generating the appropriate code to produce a compacted immutable version of the appropriate type. In this version, java.util collections and guava's ImmutableCollections are supported. See the [feature documentation](http://projectlombok.org/features/BuilderSingular.html) for more information.
* FEATURE: Added a launcher to the lombok boot process which removes the need for `-Xbootclasspath` to be in your `eclipse.ini` file, and removes all non-public API and third party dependencies (such as ASM) from the lombok jar, thus removing them from your IDE's auto complete offerings in any project that uses lombok. For those debugging lombok, the launcher enables hot code replace which makes debugging a lot easier, as previously one was required to shut down the IDE, rebuild the jar, and relaunch. Add `-Dshadow.override.lombok=/path/to/lombok/bin` to the launch target for hot code replace.
-* Builder __TODO TODO TODO TODO DO NOT SHIP YET__:
-
- * Review if there are any potentially breaking changes in the pipeline for builder BEFORE moving it out of experimental.
- * Make sure you cover the fact that builder has moved on from experimental in this issue, and on the features page /doc!
-
-* __TODO TODO TODO TODO DO NOT SHIP YET__: At least modify the deprecated warning of the constructorProperties thing that we're gonna kill it soon.
-
### v1.14.8 (September 15th, 2014)
* PERFORMANCE: The configuration system typically hit the filesystem twice per read configuration key instead of hardly ever. This is a continuation of [Issue #682](https://code.google.com/p/projectlombok/issues/detail?id=682).