Skip to content

Commit 2eea1f1

Browse files
committed
v1.2.0
1 parent b1e0162 commit 2eea1f1

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project follows [Semantic Versioning](http://semver.org/).
44

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+
510
## [1.1.2] - 2019-02-07
611
- Fix pthreads incompatibility. #12
712

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/php-decimal/ext-decimal.svg?branch=master)](https://travis-ci.org/php-decimal/ext-decimal)
44
[![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)
66

77
Correctly-rounded, arbitrary-precision decimal arithmetic for PHP 7
88

package.xml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,21 @@
1010
<email>rtheunissen@php.net</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2019-02-07</date>
13+
<date>2019-02-09</date>
1414
<time>10:05:05</time>
1515
<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>
1818
</version>
1919
<stability>
2020
<release>stable</release>
2121
<api>stable</api>
2222
</stability>
2323
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
2424
<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
2628
</notes>
2729
<contents>
2830
<dir name="/">

php_decimal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
#include "ext/spl/spl_exceptions.h"
5050
#include "mpdecimal.h"
5151

52-
#define PHP_DECIMAL_VERSION "1.1.2"
52+
#define PHP_DECIMAL_VERSION "1.2.0"
5353

5454
#define PHP_DECIMAL_EXTNAME "decimal"
5555

0 commit comments

Comments
 (0)