Skip to content

Commit

Permalink
v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Nov 20, 2018
1 parent b911153 commit 79edd8e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
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/extension)
[![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.0.1-blue.svg)](https://pecl.php.net/package/decimal)
[![PECL](https://img.shields.io/badge/PECL-1.1.0-blue.svg)](https://pecl.php.net/package/decimal)

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

Expand Down
15 changes: 8 additions & 7 deletions package.xml
Expand Up @@ -2,27 +2,27 @@
<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">
<name>decimal</name>
<channel>pecl.php.net</channel>
<summary>Arbitrary-precision floating-point decimal</summary>
<description>Adds support for correctly-rounded arbitrary precision decimal floating point arithmetic in PHP 7</description>
<summary>Arbitrary precision floating-point decimal</summary>
<description>Adds support for correctly-rounded arbitrary precision decimal floating-point arithmetic in PHP 7</description>
<lead>
<name>Rudi Theunissen</name>
<user>rtheunissen</user>
<email>rtheunissen@php.net</email>
<active>yes</active>
</lead>
<date>2018-10-29</date>
<date>2018-11-20</date>
<time>11:56:52</time>
<version>
<release>1.0.1</release>
<api>1.0.0</api>
<release>1.1.0</release>
<api>1.1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
Package content updates, smarter .m4 @remicollet
Added "trim" method, to remove trailing zeroes.
</notes>
<contents>
<dir name="/">
Expand All @@ -46,12 +46,12 @@
<file role="test" name="reflection.phpt"/>
<file role="test" name="serialize.phpt"/>
<dir name="methods">
<file role="test" name="__construct.phpt"/>
<file role="test" name="abs.phpt"/>
<file role="test" name="add.phpt"/>
<file role="test" name="avg.phpt"/>
<file role="test" name="ceil.phpt"/>
<file role="test" name="compareTo.phpt"/>
<file role="test" name="__construct.phpt"/>
<file role="test" name="copy.phpt"/>
<file role="test" name="div.phpt"/>
<file role="test" name="equals.phpt"/>
Expand Down Expand Up @@ -82,6 +82,7 @@
<file role="test" name="toFloat.phpt"/>
<file role="test" name="toInt.phpt"/>
<file role="test" name="toString.phpt"/>
<file role="test" name="trim.phpt"/>
<file role="test" name="truncate.phpt"/>
</dir>
</dir>
Expand Down
2 changes: 1 addition & 1 deletion php_decimal.h
Expand Up @@ -49,7 +49,7 @@
#include "ext/spl/spl_exceptions.h"
#include "mpdecimal.h"

#define PHP_DECIMAL_VERSION "1.0.1"
#define PHP_DECIMAL_VERSION "1.1.0"

#define PHP_DECIMAL_EXTNAME "decimal"

Expand Down

0 comments on commit 79edd8e

Please sign in to comment.