Skip to content

Commit

Permalink
Preparing v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rtheunissen committed Oct 29, 2018
1 parent 25c2e7f commit 5827ebc
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -16,7 +16,6 @@ before_install:
- sudo apt-get update
- sudo apt-get install -y libmpdec-dev
- phpenv config-rm xdebug.ini || true
- sudo ionice -c3 updatedb

install:
- phpize
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,5 +2,9 @@
All notable changes to this project will be documented in this file.
This project follows [Semantic Versioning](http://semver.org/).

## [1.0.1] - 2018-10-29
- Add docs and tests to package.xml @remicollet
- Smarter libmpdec lib check in config.m4 @remicollet

## [1.0.0] - 2018-10-28
- Initial public release, request for comments.
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -2,6 +2,7 @@

[![Build Status](https://travis-ci.org/php-decimal/extension.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)

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

Expand All @@ -12,7 +13,7 @@ See http://php-decimal.io
## Dependencies

- PHP 7
- libmpdec 2.4
- [libmpdec 2.4](http://www.bytereef.org/mpdecimal/download.html)

```bash
sudo apt-get install libmpdec-dev
Expand Down
4 changes: 2 additions & 2 deletions package.xml
Expand Up @@ -13,7 +13,7 @@
<date>2018-10-28</date>
<time>11:48:52</time>
<version>
<release>1.0.0</release>
<release>1.0.1</release>
<api>1.0.0</api>
</version>
<stability>
Expand All @@ -22,7 +22,7 @@
</stability>
<license uri="https://opensource.org/licenses/MIT">MIT License</license>
<notes>
Initial release, request for comments.
Package content updates, smarter .m4 @remicollet
</notes>
<contents>
<dir name="/">
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.0"
#define PHP_DECIMAL_VERSION "1.0.1"

#define PHP_DECIMAL_EXTNAME "decimal"

Expand Down

0 comments on commit 5827ebc

Please sign in to comment.