Skip to content
This repository was archived by the owner on Jul 8, 2023. It is now read-only.

Commit 3d47c0a

Browse files
committed
Preparing release 0.14.0.
1 parent 5c65ef0 commit 3d47c0a

38 files changed

+111
-309
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# Phony changelog
22

3-
## Next release
3+
## 0.14.0 (2016-09-30)
44

55
- **[BC BREAK]** Removed `calledOn()` ([#197]).
66
- **[IMPROVED]** Generator spies and iterable spies are now substituted in
77
argument matching and verification ([#193]).
8-
- **[IMPROVED]** Documentation improvements ([#191], [#192]).
8+
- **[IMPROVED]** Documentation improvements ([#191], [#192], [#198]).
99

1010
[#191]: https://github.com/eloquent/phony/issues/191
1111
[#192]: https://github.com/eloquent/phony/issues/192
1212
[#193]: https://github.com/eloquent/phony/issues/193
1313
[#197]: https://github.com/eloquent/phony/issues/197
14+
[#198]: https://github.com/eloquent/phony/issues/198
1415

1516
## 0.13.5 (2016-09-20)
1617

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"athletic/athletic": "^0.1",
2020
"counterpart/counterpart": "^1",
2121
"danielstjules/pho": "^1",
22-
"eloquent/asplode": "^2",
22+
"errors/exceptions": "dev-master",
2323
"friendsofphp/php-cs-fixer": "1.11.4",
2424
"hamcrest/hamcrest-php": "^2",
2525
"icecave/isolator": "^3",

composer.lock

Lines changed: 62 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/build-doc-img

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
#!/usr/bin/env php
22
<?php
33

4-
use Eloquent\Asplode\Asplode;
54
use Eloquent\Phony\Assertion\Exception\AssertionException;
65
use Eloquent\Phony\Test\Phony;
76

87
$rootPath = dirname(__DIR__);
98
require $rootPath . '/vendor/autoload.php';
109

11-
Asplode::install();
1210
Phony::setUseColor(true);
1311

1412
echo 'Generating images for documentation... ';

scripts/build-test-fixtures

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#!/usr/bin/env php
22
<?php
33

4-
use Eloquent\Asplode\Asplode;
54
use Eloquent\Phony\Assertion\Exception\AssertionException;
65
use Eloquent\Phony\Hook\FunctionHookGenerator;
76
use Eloquent\Phony\Mock\Builder\MockBuilderFactory;
@@ -13,8 +12,6 @@ $rootPath = dirname(__DIR__);
1312
require $rootPath . '/vendor/autoload.php';
1413
require $rootPath . '/test/src/TestClassOldConstructor.php';
1514

16-
Asplode::install();
17-
1815
$fixturePath = $rootPath . '/test/fixture/';
1916
$detector = FeatureDetector::instance();
2017

scripts/build-web

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
#!/usr/bin/env php
22
<?php
33

4-
use Eloquent\Asplode\Asplode;
5-
64
require __DIR__ . '/../vendor/autoload.php';
75

8-
Asplode::install();
9-
106
echo 'Generating website... ';
117

128
passthru('mkdir -p build');

0 commit comments

Comments
 (0)