diff options
-rw-r--r-- | doc/changelog.markdown | 2 | ||||
-rw-r--r-- | doc/publishing.txt | 2 | ||||
-rw-r--r-- | src/core/lombok/core/Version.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 1c1f1304..de3f102f 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -1,7 +1,7 @@ Lombok Changelog ---------------- -### v0.9.3 +### v0.9.3 (edge) * Eclipse: `@Data` and other annotations now don't throw errors when you include fields with bounded wildcard generics, such as `List<? extends Number>`. [Issue #84](http://code.google.com/p/projectlombok/issues/detail?id=84) * plugins and `@SneakyThrows`: Resolving types in annotations now works better especially for classes that aren't in the core java libraries. [Issue #88](http://code.google.com/p/projectlombok/issues/detail?id=88) diff --git a/doc/publishing.txt b/doc/publishing.txt index 6a61b73a..01a2c294 100644 --- a/doc/publishing.txt +++ b/doc/publishing.txt @@ -10,4 +10,4 @@ Step #4: git push && git push --tags Step #5: ant publish-all -Step #6: Change src/core/lombok/core/Version.java to "0.8.2-HEAD", and commit this. +Step #6: Change src/core/lombok/core/Version.java to "0.8.2-EDGE", and commit this. diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java index 295dfae2..cb83a6a3 100644 --- a/src/core/lombok/core/Version.java +++ b/src/core/lombok/core/Version.java @@ -26,7 +26,7 @@ package lombok.core; */ 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.9.3-HEAD"; + private static final String VERSION = "0.9.3-EDGE"; private static final String RELEASE_NAME = "hailbunny"; private Version() { |