Skip to content

Commit dd7e1a8

Browse files
Update version to 1.4.2
1 parent 157ec95 commit dd7e1a8

File tree

3 files changed

+25
-2
lines changed

3 files changed

+25
-2
lines changed

CHANGELOG.markdown

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,29 @@
11
PHPSpec 1.3
22
===========
33

4+
PHPSpec 1.4.2
5+
-------------
6+
* Add better junit formatter implementation
7+
* Filled out the test to check fail fast functionality
8+
* Fix interceptor not decorating returned value of intercepted magic call
9+
* Fix #96 Predicate matching replaces the actual value with a boolean
10+
* Fix #95 PHPSpec unable to find macros file
11+
* Fix #94 phpspec not finding custom matcher functions with PEAR installation
12+
* Fix #92 "HaveKey" Matcher has "$expected" and "$actual" switched
13+
* Fix path separator so it works on windows
14+
* Fix public property not being intercepted
15+
* Make shebang a bit more universal
16+
* Add namespace to a few specs that didn't have it
17+
* Add pear folder generated by ant to .gitignore
18+
* Remove unused bin script. Only one script used for both pear and composer
19+
* Fix matchers not being found due to case sensitivity in some distros
20+
* Fix travis-ci build script
21+
22+
PHPSpec 1.4.1
23+
-------------
24+
* Fix issue with phpspec script not calling autoloader
25+
* Fix composer looking for autoload in local vendor folder
26+
427
PHPSpec 1.4.0
528
-------------
629
* Extract common interface for Example and SharedExample

build/build.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<project name="PHPSpec" default="pearify" basedir="..">
22

3-
<property name="version" value="1.4.1" />
3+
<property name="version" value="1.4.2" />
44
<property name="stability" value="stable" />
55
<property name="source" value="src" />
66
<property name="build" value="build" />

src/PHPSpec/Runner/Cli/Runner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class Runner implements \PHPSpec\Runner\Runner
4949
*
5050
* @var string
5151
*/
52-
const VERSION = '1.4.1';
52+
const VERSION = '1.4.2';
5353

5454
/**
5555
* Usage message

0 commit comments

Comments
 (0)