Skip to content

Commit

Permalink
v1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Feb 7, 2019
1 parent 916b2dd commit d9b1862
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](http://semver.org/).

## [1.1.2] - 2019-02-07
- Fix pthreads incompatibility. #12

## [1.1.1] - 2019-01-24
- Fix `signum` returning 1 for zero, instead of 0. #9

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://travis-ci.org/php-decimal/ext-decimal.svg?branch=master)](https://travis-ci.org/php-decimal/ext-decimal)
[![Build status](https://ci.appveyor.com/api/projects/status/lg5nw5tqgpmv1c33?svg=true)](https://ci.appveyor.com/project/rtheunissen/php-decimal)
[![PECL](https://img.shields.io/badge/PECL-1.1.1-blue.svg)](https://pecl.php.net/package/decimal)
[![PECL](https://img.shields.io/badge/PECL-1.1.2-blue.svg)](https://pecl.php.net/package/decimal)

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

Expand Down
6 changes: 3 additions & 3 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
<email>rtheunissen@php.net</email>
<active>yes</active>
</lead>
<date>2019-01-24</date>
<date>2019-02-07</date>
<time>10:05:05</time>
<version>
<release>1.1.1</release>
<release>1.1.2</release>
<api>1.1.0</api>
</version>
<stability>
Expand All @@ -22,7 +22,7 @@
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
Fix "signum" returning 1 for zero, instead of 0.
Fix incompatibility with pthreads. #12 @krakjoe
</notes>
<contents>
<dir name="/">
Expand Down
2 changes: 1 addition & 1 deletion php_decimal.h
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
#include "ext/spl/spl_exceptions.h"
#include "mpdecimal.h"

#define PHP_DECIMAL_VERSION "1.1.1"
#define PHP_DECIMAL_VERSION "1.1.2"

#define PHP_DECIMAL_EXTNAME "decimal"

Expand Down

0 comments on commit d9b1862

Please sign in to comment.