From 21095bbb972b590cd4fc61ea911aca60ec30cedf Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 6 Mar 2014 23:21:55 +0100 Subject: pre-release version bump --- doc/changelog.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 65958ba5..8cbd0d15 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,7 +1,7 @@ Lombok Changelog ---------------- -### v1.12.5 "Edgy Guinea Pig" +### v1.12.5 (March 6th, 2014) * GOOSECHASE: We're trying to fix a deadlock/race condition in the EquinoxClassLoader when Eclipse works with SVN or Gradle. (v2) * PLATFORM: Added support for Eclipse Luna. [Issue #609](https://code.google.com/p/projectlombok/issues/detail?id=609) * PLATFORM: Initial JDK8 support for eclipse's alpha support in kepler. [Issue #597](https://code.google.com/p/projectlombok/issues/detail?id=597) -- cgit From 0ad9077d465e8da36edb7e6c09b99717a85488c9 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Thu, 6 Mar 2014 23:57:01 +0100 Subject: dang, I typoed the version number in changelog, and I already pushed out to maven. Oh well. --- doc/changelog.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 8cbd0d15..e32361a2 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,7 +1,7 @@ Lombok Changelog ---------------- -### v1.12.5 (March 6th, 2014) +### v1.12.6 (March 6th, 2014) * GOOSECHASE: We're trying to fix a deadlock/race condition in the EquinoxClassLoader when Eclipse works with SVN or Gradle. (v2) * PLATFORM: Added support for Eclipse Luna. [Issue #609](https://code.google.com/p/projectlombok/issues/detail?id=609) * PLATFORM: Initial JDK8 support for eclipse's alpha support in kepler. [Issue #597](https://code.google.com/p/projectlombok/issues/detail?id=597) -- cgit From aeae9023424ba39d47fe42b03772988dc0c18a07 Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 7 Mar 2014 00:01:58 +0100 Subject: post release version bump --- doc/changelog.markdown | 2 ++ 1 file changed, 2 insertions(+) (limited to 'doc') diff --git a/doc/changelog.markdown b/doc/changelog.markdown index e32361a2..24a69a41 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,6 +1,8 @@ Lombok Changelog ---------------- +### v1.12.7 "Edgy Guinea Pig" + ### v1.12.6 (March 6th, 2014) * GOOSECHASE: We're trying to fix a deadlock/race condition in the EquinoxClassLoader when Eclipse works with SVN or Gradle. (v2) * PLATFORM: Added support for Eclipse Luna. [Issue #609](https://code.google.com/p/projectlombok/issues/detail?id=609) -- cgit From 362000933f46ad1d509a659e39279298440a97ec Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Fri, 7 Mar 2014 03:11:07 +0100 Subject: fixed the weird goosechase thing in the changelog. --- doc/changelog.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 24a69a41..8fbc87b0 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -4,7 +4,7 @@ Lombok Changelog ### v1.12.7 "Edgy Guinea Pig" ### v1.12.6 (March 6th, 2014) -* GOOSECHASE: We're trying to fix a deadlock/race condition in the EquinoxClassLoader when Eclipse works with SVN or Gradle. (v2) +* BUGFIX: deadlocks would occasionally occur in eclipse during project builds, especially if using the gradle plugin. [Issue #645](https://code.google.com/p/projectlombok/issues/detail?id=645) * PLATFORM: Added support for Eclipse Luna. [Issue #609](https://code.google.com/p/projectlombok/issues/detail?id=609) * PLATFORM: Initial JDK8 support for eclipse's alpha support in kepler. [Issue #597](https://code.google.com/p/projectlombok/issues/detail?id=597) * FEATURE: The various `@Log` annotations now support the `topic` parameter, which sets the logger's name. The default remains the fully qualified type name of the class itself. [Issue #632](https://code.google.com/p/projectlombok/issues/detail?id=632). -- cgit From 17972d59fa7e2eec6b73ba5da8234f5fa7ac2536 Mon Sep 17 00:00:00 2001 From: Roel Spilker Date: Mon, 17 Mar 2014 21:56:49 +0100 Subject: [#590][refactor] Fix for deadlock in WeakHashMap. Refactored all code that used a WeakHashMap to fake a field. --- doc/changelog.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'doc') diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 8fbc87b0..cf2d286b 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -2,9 +2,10 @@ Lombok Changelog ---------------- ### v1.12.7 "Edgy Guinea Pig" +* BUGFIX: Deadlocks would occasionally occur in eclipse when using lazy getters [Issue #590](https://code.google.com/p/projectlombok/issues/detail?id=590) ### v1.12.6 (March 6th, 2014) -* BUGFIX: deadlocks would occasionally occur in eclipse during project builds, especially if using the gradle plugin. [Issue #645](https://code.google.com/p/projectlombok/issues/detail?id=645) +* BUGFIX: Deadlocks would occasionally occur in eclipse during project builds, especially if using the gradle plugin. [Issue #645](https://code.google.com/p/projectlombok/issues/detail?id=645) * PLATFORM: Added support for Eclipse Luna. [Issue #609](https://code.google.com/p/projectlombok/issues/detail?id=609) * PLATFORM: Initial JDK8 support for eclipse's alpha support in kepler. [Issue #597](https://code.google.com/p/projectlombok/issues/detail?id=597) * FEATURE: The various `@Log` annotations now support the `topic` parameter, which sets the logger's name. The default remains the fully qualified type name of the class itself. [Issue #632](https://code.google.com/p/projectlombok/issues/detail?id=632). -- cgit