diff --git a/CHANGELOG.md b/CHANGELOG.md index 654e14c..5baf9b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ We do not give estimated times for completion on `Accepted` Proposals. --- +#### v3.0.1 - 2017-11-19 + +`ADDED` + +- Support for Laravel 5.5 Package Discovery. +- Support for Temperatures. + #### v3.0.0 - 2017-02-19 `UPDATED` diff --git a/README.md b/README.md index c56e75c..a2e893d 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Converter -[![Build Status](https://travis-ci.org/cartalyst/converter.svg?branch=2.0)](https://travis-ci.org/cartalyst/converter) +[![Build Status](https://travis-ci.org/cartalyst/converter.svg?branch=3.0)](https://travis-ci.org/cartalyst/converter) A framework agnostic measurement conversion and formatting package featuring multiple types of measurements and currency conversion. @@ -10,14 +10,15 @@ An open source package by [Cartalyst](https://cartalyst.com), code well, rock on ## Documentation -Reader-friendly Documentation can be found [here](https://cartalyst.com/manual/converter/2.0). +Reader-friendly Documentation can be found [here](https://cartalyst.com/manual/converter/3.0). -Raw files can be found [here](https://github.com/cartalyst/converter/tree/docs/2.0). +Raw files can be found [here](https://github.com/cartalyst/converter/tree/docs/3.0). ## Change Log Important versions listed below. Refer to the [Change Log](CHANGELOG.md) for a full history of the project. +- [3.0](CHANGELOG.md) - 2017-02-19 - [2.0](CHANGELOG.md) - 2015-03-06 - [1.1](CHANGELOG.md) - 2014-08-16 - [1.0](CHANGELOG.md) - 2014-05-09 diff --git a/src/Converter.php b/src/Converter.php index 9cefa2d..5b9dae1 100644 --- a/src/Converter.php +++ b/src/Converter.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/src/Exchangers/ExchangerInterface.php b/src/Exchangers/ExchangerInterface.php index 6623ead..a04ebe6 100644 --- a/src/Exchangers/ExchangerInterface.php +++ b/src/Exchangers/ExchangerInterface.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/src/Exchangers/NativeExchanger.php b/src/Exchangers/NativeExchanger.php index 51543b0..8fea967 100644 --- a/src/Exchangers/NativeExchanger.php +++ b/src/Exchangers/NativeExchanger.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/src/Exchangers/OpenExchangeRatesExchanger.php b/src/Exchangers/OpenExchangeRatesExchanger.php index f9f8dfb..5d89441 100644 --- a/src/Exchangers/OpenExchangeRatesExchanger.php +++ b/src/Exchangers/OpenExchangeRatesExchanger.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/src/Laravel/ConverterServiceProvider.php b/src/Laravel/ConverterServiceProvider.php index ff0b966..843ed3f 100644 --- a/src/Laravel/ConverterServiceProvider.php +++ b/src/Laravel/ConverterServiceProvider.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/src/Laravel/Facades/Converter.php b/src/Laravel/Facades/Converter.php index 55444e9..5a42a19 100644 --- a/src/Laravel/Facades/Converter.php +++ b/src/Laravel/Facades/Converter.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/src/config/config.php b/src/config/config.php index 8e52120..ba1f989 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC diff --git a/tests/ConverterTest.php b/tests/ConverterTest.php index 5e51e6b..0cc384f 100644 --- a/tests/ConverterTest.php +++ b/tests/ConverterTest.php @@ -11,7 +11,7 @@ * bundled with this package in the LICENSE file. * * @package Converter - * @version 3.0.0 + * @version 3.0.1 * @author Cartalyst LLC * @license BSD License (3-clause) * @copyright (c) 2011-2017, Cartalyst LLC