-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f55a5b3
commit 12ea249
Showing
1 changed file
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
## v2.5.0 | ||
|
||
* Improved the algorithm: it gets better with this release! | ||
* Added: ability to override default valid variables, that will allow to set variables with names not only x, y, z, a, b. | ||
* Added: History.md | ||
* Updated: readme | ||
|
||
## v2.4.0 | ||
|
||
* Improved: now are available several consecutive operators, e.g. 10/--++2 | ||
* Improved: a decimal number can be given as 1. or .1 which is equal to 1.0 or 0.1 | ||
* Added: constant Inf | ||
* Added: processing of NaN | ||
* Added: unit tests | ||
* Fixed: PHP message "Notice: Undefined offset" in some cases | ||
* Refactored: class properties and names of several methods | ||
* Refactored: short syntax to arrays | ||
* Updated: composer.json | ||
* Updated: PHPDoc | ||
* Updated: readme | ||
|
||
## v2.3.0 | ||
|
||
* Added: variables x, y, z, a, b | ||
* Added: constant e | ||
* Added: functions log, exp | ||
* Added: namespace | ||
* Added: composer.json | ||
* Updated: PHPDoc | ||
* Updated: readme | ||
|
||
## v2.2.0 | ||
|
||
* Added: functions sqrt, abs, sin, cos, tan | ||
* Refactored: class properties | ||
* Fixed: PHPDoc | ||
* Updated: readme | ||
|
||
## v2.1.0 | ||
|
||
* Improved the algorithm: it gets better with this release! | ||
* Improved: now spaces are allowed, like so: 8 + ( 10 * ( 3 + 5 ) ) / 2 | ||
* Added: numbers in E notation | ||
* Added: constant pi | ||
* Added: new validation rules |