aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinier Zwitserloot <reinier@zwitserloot.com>2014-05-27 20:54:06 +0200
committerReinier Zwitserloot <reinier@zwitserloot.com>2014-05-27 20:54:06 +0200
commit122481eebffddeb0d0bb33b6e6fd50ce1ce43df7 (patch)
tree9ad6f95653fab4667073eadfe363e54dd3fe3bdb
parent713822db9894cf99184aff57b3387f99846aa870 (diff)
downloadlombok-122481eebffddeb0d0bb33b6e6fd50ce1ce43df7.tar.gz
lombok-122481eebffddeb0d0bb33b6e6fd50ce1ce43df7.tar.bz2
lombok-122481eebffddeb0d0bb33b6e6fd50ce1ce43df7.zip
pre-release version bump
-rw-r--r--doc/changelog.markdown2
-rw-r--r--src/core/lombok/core/Version.java6
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown
index 058a478a..6a42449b 100644
--- a/doc/changelog.markdown
+++ b/doc/changelog.markdown
@@ -1,7 +1,7 @@
Lombok Changelog
----------------
-### v1.12.7 "Edgy Guinea Pig"
+### v1.14.0 "Branching Cobra" (May 27th, 2014)
* FEATURE: You can now configure aspects of lombok project wide (or even workspace wide, or just for a single package) via the [configuration system](http://projectlombok.org/features/configuration.html). You can configure many things; run `java -jar lombok.jar config -gv` for the complete list.
* DEPRECATION: `@Delegate` has been moved to `lombok.experimental.Delegate`, and corner cases such as recursive delegation (delegating a type that itself has fields or methods annotated with `@Delegate`) are now error conditions. See the [feature documentation](http://projectlombok.org/features/experimental/Delegate.html) for more information.
* FEATURE: It is now possible to put annotations, such as `@Nullable`, on the one parameter of generated `equals()` methods by specifying the `onParam=` option on `@EqualsAndHashCode`, similar to how that feature already exists for `@Setter`. [Issue #674](https://code.google.com/p/projectlombok/issues/detail?id=674)
diff --git a/src/core/lombok/core/Version.java b/src/core/lombok/core/Version.java
index 2bd07d5a..fc18602e 100644
--- a/src/core/lombok/core/Version.java
+++ b/src/core/lombok/core/Version.java
@@ -28,9 +28,9 @@ public class Version {
// ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries).
// Note: In 'X.Y.Z', if Z is odd, its a snapshot build built from the repository, so many different 0.10.3 versions can exist, for example.
// Official builds always end in an even number. (Since 0.10.2).
- private static final String VERSION = "1.12.7";
- private static final String RELEASE_NAME = "Edgy Guinea Pig";
-// private static final String RELEASE_NAME = "Angry Butterfly";
+ private static final String VERSION = "1.14.0";
+// private static final String RELEASE_NAME = "Edgy Guinea Pig";
+ private static final String RELEASE_NAME = "Branching Cobra";
private Version() {
//Prevent instantiation