Skip to content

Commit b392937

Browse files
committed
Prepare some information about upcoming 3.0.0 release
1 parent 652b7c7 commit b392937

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ matrix:
1515
env:
1616
- COVERAGE_FLAGS="--coverage-text --coverage-clover=clover.xml"
1717
- language: php
18-
php: 7.4snapshot
18+
php: 7.4
1919
before_script:
2020
- composer install
2121
- language: php
@@ -26,7 +26,7 @@ matrix:
2626
language: sh
2727
os: windows
2828
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"'
3030
# Export windows path into unix path
3131
- export PATH=/c/php:$PATH
3232
# Enable openssl, mbstring php extensions
@@ -37,7 +37,7 @@ matrix:
3737

3838
allow_failures:
3939
- php: nightly
40-
- php: 7.4snapshot
40+
- php: 7.4
4141

4242
script:
4343
- vendor/bin/phpunit --verbose ${COVERAGE_FLAGS} --colors

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
Changelog
22
======
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+
313
2.0.0 (May 14, 2016)
414
* Dropped support for PHP<5.6, clean all old code
515
* [BC BREAK] Removed ability to rebind closures, because of PHP restrictions, see #247

src/Core/AspectKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ abstract class AspectKernel
3434
/**
3535
* Version of kernel
3636
*/
37-
public const VERSION = '2.1.0';
37+
public const VERSION = '3.0.0';
3838

3939
/**
4040
* Kernel options

0 commit comments

Comments
 (0)