Skip to content

Commit

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

## [1.2.0] - 2019-02-09
- Change signum of NAN returning 1, now throws RuntimeException. #10
- Change toInt of NAN and INF returning 0, now throws RuntimeException. #11
- Fix pthreads incompatibility (properly). #12

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

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

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

Expand Down
10 changes: 6 additions & 4 deletions package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,21 @@
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2019-02-07</date>
<date>2019-02-09</date>
<time>10:05:05</time>
<version>
<release>1.1.2</release>
<api>1.1.0</api>
<release>1.2.0</release>
<api>1.2.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
Fix incompatibility with pthreads. #12 @krakjoe
- Change signum of NAN returning 1, now throws RuntimeException. #10
- Change toInt of NAN and INF returning 0, now throws RuntimeException. #11
- Fix pthreads incompatibility (properly). #12
</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.2"
#define PHP_DECIMAL_VERSION "1.2.0"

#define PHP_DECIMAL_EXTNAME "decimal"

Expand Down

0 comments on commit 2eea1f1

Please sign in to comment.