diff options
author | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-26 10:08:21 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@tipit.to> | 2009-07-26 10:08:21 +0200 |
commit | 0ecd99a50eb5424ca045b78bb555453b49f44c64 (patch) | |
tree | 2ffac047ef13ca9d8049e86d6410c6c1fa5784b7 | |
parent | 185f5ea1190933d22555bc575e4326f9fae515aa (diff) | |
download | lombok-0ecd99a50eb5424ca045b78bb555453b49f44c64.tar.gz lombok-0ecd99a50eb5424ca045b78bb555453b49f44c64.tar.bz2 lombok-0ecd99a50eb5424ca045b78bb555453b49f44c64.zip |
Version up to 0.8.2-HEAD as I just published.
-rw-r--r-- | doc/publishing.txt | 8 | ||||
-rw-r--r-- | src/lombok/core/Version.java | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/doc/publishing.txt b/doc/publishing.txt index 326e5862..aa47e9aa 100644 --- a/doc/publishing.txt +++ b/doc/publishing.txt @@ -5,3 +5,11 @@ git tag v0.8.1 git push git push --tags ant publish + +Then, up the version number again, to v0.8.2-HEAD, and run: +ant website + +and publish the website. Or, at least: +ant changelogToHtml + +and publish build/website/changelog.html diff --git a/src/lombok/core/Version.java b/src/lombok/core/Version.java index 964edc37..1c1c8cca 100644 --- a/src/lombok/core/Version.java +++ b/src/lombok/core/Version.java @@ -25,7 +25,7 @@ package lombok.core; * This class just holds lombok's current version. */ public class Version { - private static final String VERSION = "0.8.1"; + private static final String VERSION = "0.8.2-HEAD"; private Version() { //Prevent instantiation |