=== 0.5.0
* Added Ruby 1.9.2 compatibility. Thanks ymendel!
* Get rid of that dependency on hoe, use Bundler to manage gem release.

=== 0.4.1 / 2008-12-05

* Added #times, #once and #never expectation matchers. Thanks raggi!
  E.g. 
    @mock.should.receive(:call_me_thrice).times(3)
    @mock.should.receive(:just_this_1_time).once
    @mock.should.receive(:dont_even_think_about_it).never

=== 0.4.0 / 2008-12-05

* Fix compatibility with Bacon 1.0 and 1.1.

=== 0.3.1 / 2008-02-19

* Fixed a bug where mocks were not being teared down when there is a previous spec failure.

=== 0.3 / 2008-02-18

* Fixed a bug with proxied methods not being cleared.
* Fixed a bug where the same mocks were repeatedly being added to $facon_mocks.

=== 0.2 / 2008-02-13

* Use #after block to verify mocks so that the stack trace is more helpful (it now actually shows the line in the spec where the mock error occurred).

=== 0.1 / 2008-02-09

* First release!