For compiling LÖVE yourself? For Windows there's Megasource which has everything you'll need. For Mac OS X you can just take the frameworks (except for love.framework) out of love.app and put them in /Library/Frameworks/ and the Xcode project will recognize them. I'll get the OSX frameworks up as a standalone download soon.
Exciting release! I just updated my own engine code to 0.9.
There's some undocumented breakage(?) in love.filesystem.load(). When the file it is trying to load doesn't exist, it simply returns nil. Previously the function would call error() stating that the file did not exist. This is actually a welcome change for me as I use .lua files as a property system and would rather print warnings than errors if the properties.lua file is missing - now I no longer have to wrap the call to love.filesystem.load() within pcall(). The change did, however, cause my warning messages to go weird.
Then again, the wiki never quite specified the error behavior on a missing file. Yet, the change also means that said wiki page is now out of date.