File tree Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Expand file tree Collapse file tree 4 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
This project follows [ Semantic Versioning] ( http://semver.org/ ) .
4
4
5
+ ## [ 1.2.0] - 2019-02-09
6
+ - Change signum of NAN returning 1, now throws RuntimeException. #10
7
+ - Change toInt of NAN and INF returning 0, now throws RuntimeException. #11
8
+ - Fix pthreads incompatibility (properly). #12
9
+
5
10
## [ 1.1.2] - 2019-02-07
6
11
- Fix pthreads incompatibility. #12
7
12
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/php-decimal/ext-decimal.svg?branch=master )] ( https://travis-ci.org/php-decimal/ext-decimal )
4
4
[ ![ Build status] ( https://ci.appveyor.com/api/projects/status/lg5nw5tqgpmv1c33?svg=true )] ( https://ci.appveyor.com/project/rtheunissen/php-decimal )
5
- [ ![ PECL] ( https://img.shields.io/badge/PECL-1.1.2 -blue.svg )] ( https://pecl.php.net/package/decimal )
5
+ [ ![ PECL] ( https://img.shields.io/badge/PECL-1.2.0 -blue.svg )] ( https://pecl.php.net/package/decimal )
6
6
7
7
Correctly-rounded, arbitrary-precision decimal arithmetic for PHP 7
8
8
Original file line number Diff line number Diff line change 10
10
<email >rtheunissen@php.net</email >
11
11
<active >yes</active >
12
12
</lead >
13
- <date >2019-02-07 </date >
13
+ <date >2019-02-09 </date >
14
14
<time >10:05:05</time >
15
15
<version >
16
- <release >1.1.2 </release >
17
- <api >1.1 .0</api >
16
+ <release >1.2.0 </release >
17
+ <api >1.2 .0</api >
18
18
</version >
19
19
<stability >
20
20
<release >stable</release >
21
21
<api >stable</api >
22
22
</stability >
23
23
<license uri =" https://opensource.org/licenses/MIT" >MIT License</license >
24
24
<notes >
25
- Fix incompatibility with pthreads. #12 @krakjoe
25
+ - Change signum of NAN returning 1, now throws RuntimeException. #10
26
+ - Change toInt of NAN and INF returning 0, now throws RuntimeException. #11
27
+ - Fix pthreads incompatibility (properly). #12
26
28
</notes >
27
29
<contents >
28
30
<dir name =" /" >
Original file line number Diff line number Diff line change 49
49
#include "ext/spl/spl_exceptions.h"
50
50
#include "mpdecimal.h"
51
51
52
- #define PHP_DECIMAL_VERSION "1.1.2 "
52
+ #define PHP_DECIMAL_VERSION "1.2.0 "
53
53
54
54
#define PHP_DECIMAL_EXTNAME "decimal"
55
55
You can’t perform that action at this time.
0 commit comments