From 00639a88ef11645aacd2756b654fec7b2796fa9a Mon Sep 17 00:00:00 2001 From: Suhayb Wardany Date: Mon, 30 Jan 2017 20:19:00 +0200 Subject: [PATCH] bump version, update changelog and copyright headers Signed-off-by: Suhayb Wardany --- CHANGELOG.md | 10 ++++++++++ LICENSE | 2 +- README.md | 2 +- src/Alerts.php | 4 ++-- src/Laravel/AlertsServiceProvider.php | 4 ++-- src/Laravel/Facades/Alert.php | 4 ++-- src/Message.php | 4 ++-- src/Native/AlertsBootstrapper.php | 4 ++-- src/Native/Facades/Alert.php | 4 ++-- src/Notifiers/FlashNotifier.php | 4 ++-- src/Notifiers/Notifier.php | 4 ++-- src/Notifiers/NotifierInterface.php | 4 ++-- src/Storage/IlluminateSession.php | 4 ++-- src/Storage/NativeSession.php | 4 ++-- src/Storage/StorageInterface.php | 4 ++-- src/config/config.php | 4 ++-- tests/AlertsTest.php | 4 ++-- tests/FlashNotifierTest.php | 4 ++-- tests/MessageTest.php | 4 ++-- tests/NativeAlertsTest.php | 4 ++-- tests/NotifierTest.php | 4 ++-- 21 files changed, 48 insertions(+), 38 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c3d605d..f529b03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,16 @@ We do not give estimated times for completion on `Accepted` Proposals. --- +### v2.0.2 - 2017-01-30 + +`REVISED` + +- Update service provider for Laravel 5.4 support. + +`FIXED` + +- A bug on FileSessionHandler instantation when using the native bootstrapper. + ### v2.0.1 - 2016-02-11 `REVISED` diff --git a/LICENSE b/LICENSE index 85b8429..4b0b3ff 100755 --- a/LICENSE +++ b/LICENSE @@ -1,5 +1,5 @@ The BSD 3-Clause License -Copyright (c) 2011-2016, Cartalyst LLC +Copyright (c) 2011-2017, Cartalyst LLC All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index 95eefab..451152a 100755 --- a/README.md +++ b/README.md @@ -41,4 +41,4 @@ Bug reports, feature requests, and pull requests can be submitted by following o This software is released under the [BSD 3-Clause](LICENSE) License. -© 2011-2016 Cartalyst LLC, All rights reserved. +© 2011-2017 Cartalyst LLC, All rights reserved. diff --git a/src/Alerts.php b/src/Alerts.php index fcd4055..1240164 100644 --- a/src/Alerts.php +++ b/src/Alerts.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Laravel/AlertsServiceProvider.php b/src/Laravel/AlertsServiceProvider.php index 7177373..2bdfbdb 100644 --- a/src/Laravel/AlertsServiceProvider.php +++ b/src/Laravel/AlertsServiceProvider.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Laravel/Facades/Alert.php b/src/Laravel/Facades/Alert.php index 8a40e63..ea2d6a7 100644 --- a/src/Laravel/Facades/Alert.php +++ b/src/Laravel/Facades/Alert.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Message.php b/src/Message.php index c791358..7492e3b 100644 --- a/src/Message.php +++ b/src/Message.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Native/AlertsBootstrapper.php b/src/Native/AlertsBootstrapper.php index 325a90e..d7e7dae 100644 --- a/src/Native/AlertsBootstrapper.php +++ b/src/Native/AlertsBootstrapper.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Native/Facades/Alert.php b/src/Native/Facades/Alert.php index 79d7cf3..9a6f787 100644 --- a/src/Native/Facades/Alert.php +++ b/src/Native/Facades/Alert.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Notifiers/FlashNotifier.php b/src/Notifiers/FlashNotifier.php index 8cdd7f6..c1d3968 100644 --- a/src/Notifiers/FlashNotifier.php +++ b/src/Notifiers/FlashNotifier.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Notifiers/Notifier.php b/src/Notifiers/Notifier.php index 6e83512..ccb410b 100644 --- a/src/Notifiers/Notifier.php +++ b/src/Notifiers/Notifier.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Notifiers/NotifierInterface.php b/src/Notifiers/NotifierInterface.php index 46edb29..e8cea08 100644 --- a/src/Notifiers/NotifierInterface.php +++ b/src/Notifiers/NotifierInterface.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Storage/IlluminateSession.php b/src/Storage/IlluminateSession.php index 73bea35..ee248d8 100644 --- a/src/Storage/IlluminateSession.php +++ b/src/Storage/IlluminateSession.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Storage/NativeSession.php b/src/Storage/NativeSession.php index 323ff61..2cb0f33 100644 --- a/src/Storage/NativeSession.php +++ b/src/Storage/NativeSession.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/Storage/StorageInterface.php b/src/Storage/StorageInterface.php index d53ba18..0e72d92 100644 --- a/src/Storage/StorageInterface.php +++ b/src/Storage/StorageInterface.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/src/config/config.php b/src/config/config.php index 7117c7b..2cd4785 100644 --- a/src/config/config.php +++ b/src/config/config.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/AlertsTest.php b/tests/AlertsTest.php index f3275b9..85ee793 100644 --- a/tests/AlertsTest.php +++ b/tests/AlertsTest.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/FlashNotifierTest.php b/tests/FlashNotifierTest.php index 9dc4524..28fd8a8 100644 --- a/tests/FlashNotifierTest.php +++ b/tests/FlashNotifierTest.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/MessageTest.php b/tests/MessageTest.php index e6dace7..dc4b4e1 100644 --- a/tests/MessageTest.php +++ b/tests/MessageTest.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/NativeAlertsTest.php b/tests/NativeAlertsTest.php index 8388866..3c4a662 100644 --- a/tests/NativeAlertsTest.php +++ b/tests/NativeAlertsTest.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */ diff --git a/tests/NotifierTest.php b/tests/NotifierTest.php index d7528ef..67b6806 100644 --- a/tests/NotifierTest.php +++ b/tests/NotifierTest.php @@ -11,10 +11,10 @@ * bundled with this package in the LICENSE file. * * @package Alerts - * @version 2.0.1 + * @version 2.0.2 * @author Cartalyst LLC * @license BSD License (3-clause) - * @copyright (c) 2011-2016, Cartalyst LLC + * @copyright (c) 2011-2017, Cartalyst LLC * @link http://cartalyst.com */