From 5827ebca3e5cd573960a7bbf53590bd14142c32c Mon Sep 17 00:00:00 2001 From: Rudi Theunissen Date: Mon, 29 Oct 2018 11:16:16 -0700 Subject: [PATCH] Preparing v1.0.1 --- .travis.yml | 1 - CHANGELOG.md | 4 ++++ README.md | 3 ++- package.xml | 4 ++-- php_decimal.h | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index f656365..f6e5019 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e21820..b91ed63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/README.md b/README.md index 3ca9f23..5a9771f 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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 diff --git a/package.xml b/package.xml index cef7195..f499507 100644 --- a/package.xml +++ b/package.xml @@ -13,7 +13,7 @@ 2018-10-28 - 1.0.0 + 1.0.1 1.0.0 @@ -22,7 +22,7 @@ MIT License - Initial release, request for comments. + Package content updates, smarter .m4 @remicollet diff --git a/php_decimal.h b/php_decimal.h index 0493ea8..fb27d93 100644 --- a/php_decimal.h +++ b/php_decimal.h @@ -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"