Objectify 4.0b3 should now be in maven central.
Some notes:
* Objectify now has a dependency - google guava. I'm just tired of living without it. If you're using maven, this will automatically be included.
* This release includes "live" Ref behavior - calling get() will get the value, even if you didn't @Load it. @Load is now almost purely a performance consideration.
* Note that Ref.getValue() works differently; it will return null if it was not loaded. This will make a lot of sense if you are in the habit of json-serializing object graphs.
* load() operations now return a LoadResult<?> instead of a Ref<?>. The API is mostly compatible with Ref<?>. However, I deprecated get() to try to push everyone to use now() instead. I think it reads cleaner.
* I'm still updating the documentation.
* If there are no major problems with this build, it will become the official 4.0 release sometime later this week.
Jeff