From b4a4da1f9741ea6afb147dd4289989ec705a3fbd Mon Sep 17 00:00:00 2001 From: Reinier Zwitserloot Date: Tue, 28 Jul 2009 18:17:15 +0200 Subject: Version is now 'standalone' - it is separately compiled. The version is now reflected in all javadoc pages, and on the website itself. The website design has been updated to have a link to the changelog and to mention the current version. Addresses issue #9. --- src/lombok/core/Version.java | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/lombok/core/Version.java b/src/lombok/core/Version.java index 1c1c8cca..4fc70152 100644 --- a/src/lombok/core/Version.java +++ b/src/lombok/core/Version.java @@ -25,6 +25,7 @@ package lombok.core; * This class just holds lombok's current version. */ public class Version { + // ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries). private static final String VERSION = "0.8.2-HEAD"; private Version() { -- cgit