- Add rounding option to multiply and divide operations
- PHP 7.1 is the minimum requirement
- Configurable scale
- Rounding now changes the scale of the number
- Before: '0.0050'->round(2) => '0.0100'
- Now: '0.0050'->round(2) => '0.10'
- Fix precision issues with floats as arguments
- Fix negative rounding issues
- Throw an exception when dividing by 0 to avoid a warning (@Hyunk3l)
- Fix scale errors in comparisons with 0
- Fix typos and correct phpdocs
- Fix scale errors in the comparisons (@xeviplana)
- Fix typos in docs and docblocks
- Add this CHANGELOG
- Add a custom InvalidArgumentException that extends from the base PHP InvalidArgumentException
- More tests!
- Fix some naming issues
- Update docs
- First version!