File tree Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Expand file tree Collapse file tree 3 files changed +25
-2
lines changed Original file line number Diff line number Diff line change 1
1
PHPSpec 1.3
2
2
===========
3
3
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
+
4
27
PHPSpec 1.4.0
5
28
-------------
6
29
* Extract common interface for Example and SharedExample
Original file line number Diff line number Diff line change 1
1
<project name =" PHPSpec" default =" pearify" basedir =" .." >
2
2
3
- <property name =" version" value =" 1.4.1 " />
3
+ <property name =" version" value =" 1.4.2 " />
4
4
<property name =" stability" value =" stable" />
5
5
<property name =" source" value =" src" />
6
6
<property name =" build" value =" build" />
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ class Runner implements \PHPSpec\Runner\Runner
49
49
*
50
50
* @var string
51
51
*/
52
- const VERSION = '1.4.1 ' ;
52
+ const VERSION = '1.4.2 ' ;
53
53
54
54
/**
55
55
* Usage message
You can’t perform that action at this time.
0 commit comments