Skip to content

Commit 1e4609e

Browse files
committed
Released v2.0.4
1 parent c6dc81e commit 1e4609e

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

CHANGELOG.md

+37
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,42 @@
11
# CHANGELOG
22

3+
## 2.0.4: Normalized float to double
4+
5+
Normalization from float to double, thanks to @ItsKelsBoys
6+
7+
## 2.0.3: Updated test suite
8+
9+
* upgraded PHP CS Fixer (from 1.6 to 2.10)
10+
* upgraded phpspec (from 3.0 to 4.3)
11+
12+
## 2.0.1: PHP 7.2 support
13+
14+
Added support for PHP 7.2, thanks to @roukmoute
15+
16+
BC break: Object has be renamed to Objekt, has it is a reserved keyword.
17+
18+
## 2.0.0: PHP 7 and Return type hints
19+
20+
This release is the same as 2.0.0-alpha3,
21+
compared to 1.4.1 it brings the following features:
22+
23+
Dropped support for PHP < 7
24+
25+
This means we now can use:
26+
27+
* scalar type hints
28+
* return type hints
29+
* callable type hint, without having to check PHP version
30+
31+
All `make` static constructor were created for PHP < 5.6, they're
32+
now deprecated. Here's an example of what to use instead:
33+
34+
```
35+
(new Method('sayHello'))
36+
->addArgument(new Argument('string', 'name')))
37+
;
38+
```
39+
340
## 2.0.0-alpha3: Return type hints
441

542
* added return type hints

0 commit comments

Comments
 (0)