Moq 3.0 RTM!!!
I've just released the latest version of Moq :))))
It's quite late on an intense week at Redmond, so I'm just going to paste the relevant portion of the changelog:
Version 3.0
* Silverlight support! Finally integrated Jason's Silverlight contribution! Issue #73
* Brand-new simplified event raising syntax (#130): mock.Raise(foo => foo.MyEvent += null, new MyArgs(...));
* Support for custom event signatures (not compatible with EventHandler): mock.Raise(foo => foo.MyEvent += null, arg1, arg2, arg3);...