Skip to content

Commit d9b1862

Browse files
committed
v1.1.2
1 parent 916b2dd commit d9b1862

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
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.1.2] - 2019-02-07
6+
- Fix pthreads incompatibility. #12
7+
58
## [1.1.1] - 2019-01-24
69
- Fix `signum` returning 1 for zero, instead of 0. #9
710

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.1-blue.svg)](https://pecl.php.net/package/decimal)
5+
[![PECL](https://img.shields.io/badge/PECL-1.1.2-blue.svg)](https://pecl.php.net/package/decimal)
66

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

package.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
<email>rtheunissen@php.net</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2019-01-24</date>
13+
<date>2019-02-07</date>
1414
<time>10:05:05</time>
1515
<version>
16-
<release>1.1.1</release>
16+
<release>1.1.2</release>
1717
<api>1.1.0</api>
1818
</version>
1919
<stability>
@@ -22,7 +22,7 @@
2222
</stability>
2323
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
2424
<notes>
25-
Fix "signum" returning 1 for zero, instead of 0.
25+
Fix incompatibility with pthreads. #12 @krakjoe
2626
</notes>
2727
<contents>
2828
<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.1"
52+
#define PHP_DECIMAL_VERSION "1.1.2"
5353

5454
#define PHP_DECIMAL_EXTNAME "decimal"
5555

0 commit comments

Comments
 (0)