Skip to content

Commit 79edd8e

Browse files
committed
v1.1.0
1 parent b911153 commit 79edd8e

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

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

77
Correctly-rounded, arbitrary precision decimal floating-point arithmetic in PHP 7.
88

package.xml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
33
<name>decimal</name>
44
<channel>pecl.php.net</channel>
5-
<summary>Arbitrary-precision floating-point decimal</summary>
6-
<description>Adds support for correctly-rounded arbitrary precision decimal floating point arithmetic in PHP 7</description>
5+
<summary>Arbitrary precision floating-point decimal</summary>
6+
<description>Adds support for correctly-rounded arbitrary precision decimal floating-point arithmetic in PHP 7</description>
77
<lead>
88
<name>Rudi Theunissen</name>
99
<user>rtheunissen</user>
1010
<email>rtheunissen@php.net</email>
1111
<active>yes</active>
1212
</lead>
13-
<date>2018-10-29</date>
13+
<date>2018-11-20</date>
1414
<time>11:56:52</time>
1515
<version>
16-
<release>1.0.1</release>
17-
<api>1.0.0</api>
16+
<release>1.1.0</release>
17+
<api>1.1.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-
Package content updates, smarter .m4 @remicollet
25+
Added "trim" method, to remove trailing zeroes.
2626
</notes>
2727
<contents>
2828
<dir name="/">
@@ -46,12 +46,12 @@
4646
<file role="test" name="reflection.phpt"/>
4747
<file role="test" name="serialize.phpt"/>
4848
<dir name="methods">
49+
<file role="test" name="__construct.phpt"/>
4950
<file role="test" name="abs.phpt"/>
5051
<file role="test" name="add.phpt"/>
5152
<file role="test" name="avg.phpt"/>
5253
<file role="test" name="ceil.phpt"/>
5354
<file role="test" name="compareTo.phpt"/>
54-
<file role="test" name="__construct.phpt"/>
5555
<file role="test" name="copy.phpt"/>
5656
<file role="test" name="div.phpt"/>
5757
<file role="test" name="equals.phpt"/>
@@ -82,6 +82,7 @@
8282
<file role="test" name="toFloat.phpt"/>
8383
<file role="test" name="toInt.phpt"/>
8484
<file role="test" name="toString.phpt"/>
85+
<file role="test" name="trim.phpt"/>
8586
<file role="test" name="truncate.phpt"/>
8687
</dir>
8788
</dir>

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.0.1"
52+
#define PHP_DECIMAL_VERSION "1.1.0"
5353

5454
#define PHP_DECIMAL_EXTNAME "decimal"
5555

0 commit comments

Comments
 (0)