Skip to content

Commit

Permalink
Prepare some information about upcoming 3.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lisachenko committed Dec 4, 2019
1 parent 652b7c7 commit b392937
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ matrix:
env:
- COVERAGE_FLAGS="--coverage-text --coverage-clover=clover.xml"
- language: php
php: 7.4snapshot
php: 7.4
before_script:
- composer install
- language: php
Expand All @@ -26,7 +26,7 @@ matrix:
language: sh
os: windows
before_script:
- choco install php --version 7.2.15 --package-parameters='"/InstallDir:C:\php"'
- choco install php --version 7.3.12 --package-parameters='"/InstallDir:C:\php"'
# Export windows path into unix path
- export PATH=/c/php:$PATH
# Enable openssl, mbstring php extensions
Expand All @@ -37,7 +37,7 @@ matrix:

allow_failures:
- php: nightly
- php: 7.4snapshot
- php: 7.4

script:
- vendor/bin/phpunit --verbose ${COVERAGE_FLAGS} --colors
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
Changelog
======
3.0.0 (December 4, 2019)
* [BC BREAK] Switched to the PHP7.2 and upper, strict types, return type hints and new syntax
* [BC BREAK] Removed the Joinpoint->getThis() method, as not all joinpoints belongs to classes (eg. FunctionInvocation)
* [BC BREAK] Removed the Joinpoint->getStaticPart() method as it can return anything, better to use explicit methods
* [Feature] Introduced the new ClassJoinpoint interface with getScope(), getThis() and isDynamic() methods
* [Feature] Implemented parameter widening feature for generated code #380
* [Feature] AnnotatedReflectionProperty provides simple access to property annotations #388 by @TheCelavi
* [Feature] Switched to the `zendframework/zend-code` package to generate code for proxies
* [Feature] Add private properties interception #412

2.0.0 (May 14, 2016)
* Dropped support for PHP<5.6, clean all old code
* [BC BREAK] Removed ability to rebind closures, because of PHP restrictions, see #247
Expand Down
2 changes: 1 addition & 1 deletion src/Core/AspectKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ abstract class AspectKernel
/**
* Version of kernel
*/
public const VERSION = '2.1.0';
public const VERSION = '3.0.0';

/**
* Kernel options
Expand Down

0 comments on commit b392937

Please sign in to comment.