Skip to content

Commit

Permalink
Merge pull request #327 from davedevelopment/prepare-0.9.1
Browse files Browse the repository at this point in the history
Prepare 0.9.1 release
  • Loading branch information
davedevelopment committed May 2, 2014
2 parents 09cad22 + 952766b commit 17f63ee
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@

## 0.9.1 (2014-04-XX)

* Allow specifying consecutive exceptions to be thrown with andReturnExceptions
* Allow specifying consecutive exceptions to be thrown with `andThrowExceptions`
* Allow specifying methods which can be mocked when using
`Mockery\Configuration::allowMockingNonExistentMethods(false)` with
`Mockery\MockInterface::shouldAllowMockingMethod($methodName)`
* Added andReturnSelf method: `$mock->shouldReceive("foo")->andReturnSelf()`
* `shouldIgnoreMissing` now takes an optional value that will be return instead
of null, e.g. `$mock->shouldIgnoreMissing($mock)`

## 0.9.0 (2014-02-05)

Expand Down
10 changes: 6 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
<email>dave.marshall@atstsolutions.co.uk</email>
<active>yes</active>
</lead>
<date>2014-02-05</date>
<time>21:23:00</time>
<date>2014-04-29</date>
<time>20:26:00</time>
<version>
<release>0.9.0</release>
<api>0.9.0</api>
<release>0.9.1</release>
<api>0.9.1</api>
</version>
<stability>
<release>stable</release>
Expand Down Expand Up @@ -49,6 +49,7 @@
<file name="Exception.php" role="php"/>
</dir>
<dir name="Exception">
<file name="RuntimeException.php" role="php"/>
<file name="InvalidCountException.php" role="php"/>
<file name="InvalidOrderException.php" role="php"/>
<file name="NoMatchingExpectationException.php" role="php"/>
Expand Down Expand Up @@ -139,6 +140,7 @@
<install name="library/Mockery/CountValidator/Exact.php" as="Mockery/CountValidator/Exact.php"/>
<install name="library/Mockery/CountValidator/Exception.php" as="Mockery/CountValidator/Exception.php"/>
<install name="library/Mockery/Exception.php" as="Mockery/Exception.php"/>
<install name="library/Mockery/Exception/RuntimeException.php" as="Mockery/Exception/RuntimeException.php"/>
<install name="library/Mockery/Exception/InvalidCountException.php" as="Mockery/Exception/InvalidCountException.php"/>
<install name="library/Mockery/Exception/InvalidOrderException.php" as="Mockery/Exception/InvalidOrderException.php"/>
<install name="library/Mockery/Exception/NoMatchingExpectationException.php" as="Mockery/Exception/NoMatchingExpectationException.php"/>
Expand Down

0 comments on commit 17f63ee

Please sign in to comment.