File tree 3 files changed +14
-4
lines changed
3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ matrix:
15
15
env :
16
16
- COVERAGE_FLAGS="--coverage-text --coverage-clover=clover.xml"
17
17
- language : php
18
- php : 7.4snapshot
18
+ php : 7.4
19
19
before_script :
20
20
- composer install
21
21
- language : php
@@ -26,7 +26,7 @@ matrix:
26
26
language : sh
27
27
os : windows
28
28
before_script :
29
- - choco install php --version 7.2.15 --package-parameters='"/InstallDir:C:\php"'
29
+ - choco install php --version 7.3.12 --package-parameters='"/InstallDir:C:\php"'
30
30
# Export windows path into unix path
31
31
- export PATH=/c/php:$PATH
32
32
# Enable openssl, mbstring php extensions
@@ -37,7 +37,7 @@ matrix:
37
37
38
38
allow_failures :
39
39
- php : nightly
40
- - php : 7.4snapshot
40
+ - php : 7.4
41
41
42
42
script :
43
43
- vendor/bin/phpunit --verbose ${COVERAGE_FLAGS} --colors
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
======
3
+ 3.0.0 (December 4, 2019)
4
+ * [ BC BREAK] Switched to the PHP7.2 and upper, strict types, return type hints and new syntax
5
+ * [ BC BREAK] Removed the Joinpoint->getThis() method, as not all joinpoints belongs to classes (eg. FunctionInvocation)
6
+ * [ BC BREAK] Removed the Joinpoint->getStaticPart() method as it can return anything, better to use explicit methods
7
+ * [ Feature] Introduced the new ClassJoinpoint interface with getScope(), getThis() and isDynamic() methods
8
+ * [ Feature] Implemented parameter widening feature for generated code #380
9
+ * [ Feature] AnnotatedReflectionProperty provides simple access to property annotations #388 by @TheCelavi
10
+ * [ Feature] Switched to the ` zendframework/zend-code ` package to generate code for proxies
11
+ * [ Feature] Add private properties interception #412
12
+
3
13
2.0.0 (May 14, 2016)
4
14
* Dropped support for PHP<5.6, clean all old code
5
15
* [ BC BREAK] Removed ability to rebind closures, because of PHP restrictions, see #247
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ abstract class AspectKernel
34
34
/**
35
35
* Version of kernel
36
36
*/
37
- public const VERSION = '2.1 .0 ' ;
37
+ public const VERSION = '3.0 .0 ' ;
38
38
39
39
/**
40
40
* Kernel options
You can’t perform that action at this time.
0 commit comments