From e1bc7bcafea86065ebb91b60c7ae2ddb7033253b Mon Sep 17 00:00:00 2001 From: "Timothy J. Warren" Date: Thu, 16 Mar 2023 13:09:36 -0400 Subject: [PATCH] Bump version to 4.1.0 --- CHANGELOG.md | 3 +++ build/header_comment.txt | 4 ++-- src/Driver/AbstractDriver.php | 4 ++-- src/Driver/ApcuDriver.php | 4 ++-- src/Driver/DriverInterface.php | 4 ++-- src/Driver/MemcachedDriver.php | 4 ++-- src/Driver/NullDriver.php | 4 ++-- src/Driver/RedisDriver.php | 4 ++-- src/Exception/CacheException.php | 4 ++-- src/Exception/InvalidArgumentException.php | 4 ++-- src/Item.php | 4 ++-- src/ItemCollection.php | 4 ++-- src/KeyValidateTrait.php | 4 ++-- src/LoggerTrait.php | 4 ++-- src/Pool.php | 4 ++-- src/Teller.php | 4 ++-- src/_Driver.php | 4 ++-- tests/Driver/ApcuDriverTest.php | 4 ++-- tests/Driver/DriverTestBase.php | 4 ++-- tests/Driver/MemcachedDriverTest.php | 4 ++-- tests/Driver/NullDriverTest.php | 4 ++-- tests/Driver/RedisDriverTest.php | 4 ++-- tests/Friend.php | 4 ++-- tests/ItemCollectionTest.php | 4 ++-- tests/ItemTest.php | 4 ++-- tests/PoolTest.php | 4 ++-- tests/TellerTest.php | 4 ++-- tests/bootstrap.php | 4 ++-- 28 files changed, 57 insertions(+), 54 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f04e789..090968d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 4.1.0 +* Updates for PHP 8.2 compatibility + ## 4.0.0 * Updated interfaces to match newer PSR interfaces * Updates for PHP 8.1 compatibility diff --git a/build/header_comment.txt b/build/header_comment.txt index e70ae83..b6b7fa8 100644 --- a/build/header_comment.txt +++ b/build/header_comment.txt @@ -7,8 +7,8 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ diff --git a/src/Driver/AbstractDriver.php b/src/Driver/AbstractDriver.php index 450f4f4..4485db7 100644 --- a/src/Driver/AbstractDriver.php +++ b/src/Driver/AbstractDriver.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/ApcuDriver.php b/src/Driver/ApcuDriver.php index 810f33b..320f6ea 100644 --- a/src/Driver/ApcuDriver.php +++ b/src/Driver/ApcuDriver.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/DriverInterface.php b/src/Driver/DriverInterface.php index b03145f..0cd3a88 100644 --- a/src/Driver/DriverInterface.php +++ b/src/Driver/DriverInterface.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/MemcachedDriver.php b/src/Driver/MemcachedDriver.php index d98f5b6..6f40942 100644 --- a/src/Driver/MemcachedDriver.php +++ b/src/Driver/MemcachedDriver.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/NullDriver.php b/src/Driver/NullDriver.php index 407122a..cf6c837 100644 --- a/src/Driver/NullDriver.php +++ b/src/Driver/NullDriver.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Driver/RedisDriver.php b/src/Driver/RedisDriver.php index 28cc76b..589a8df 100644 --- a/src/Driver/RedisDriver.php +++ b/src/Driver/RedisDriver.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Driver; diff --git a/src/Exception/CacheException.php b/src/Exception/CacheException.php index 0de8423..dc658a0 100644 --- a/src/Exception/CacheException.php +++ b/src/Exception/CacheException.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Exception; diff --git a/src/Exception/InvalidArgumentException.php b/src/Exception/InvalidArgumentException.php index 62f771b..1c888db 100644 --- a/src/Exception/InvalidArgumentException.php +++ b/src/Exception/InvalidArgumentException.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Exception; diff --git a/src/Item.php b/src/Item.php index 2f496e8..395656f 100644 --- a/src/Item.php +++ b/src/Item.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/ItemCollection.php b/src/ItemCollection.php index 4dda120..9743774 100644 --- a/src/ItemCollection.php +++ b/src/ItemCollection.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/KeyValidateTrait.php b/src/KeyValidateTrait.php index 0d2cf00..9ffdb1b 100644 --- a/src/KeyValidateTrait.php +++ b/src/KeyValidateTrait.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/LoggerTrait.php b/src/LoggerTrait.php index a5c5b9e..49ca954 100644 --- a/src/LoggerTrait.php +++ b/src/LoggerTrait.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/Pool.php b/src/Pool.php index 1fc63ee..2837238 100644 --- a/src/Pool.php +++ b/src/Pool.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/Teller.php b/src/Teller.php index f5171a4..c5cf126 100644 --- a/src/Teller.php +++ b/src/Teller.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/src/_Driver.php b/src/_Driver.php index 3767b89..6f1c17c 100644 --- a/src/_Driver.php +++ b/src/_Driver.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker; diff --git a/tests/Driver/ApcuDriverTest.php b/tests/Driver/ApcuDriverTest.php index 8dd16d4..bafb435 100644 --- a/tests/Driver/ApcuDriverTest.php +++ b/tests/Driver/ApcuDriverTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/DriverTestBase.php b/tests/Driver/DriverTestBase.php index 6e0c688..bd693c8 100644 --- a/tests/Driver/DriverTestBase.php +++ b/tests/Driver/DriverTestBase.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/MemcachedDriverTest.php b/tests/Driver/MemcachedDriverTest.php index 347c7f3..7596af5 100644 --- a/tests/Driver/MemcachedDriverTest.php +++ b/tests/Driver/MemcachedDriverTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/NullDriverTest.php b/tests/Driver/NullDriverTest.php index e6d5da5..1450f8a 100644 --- a/tests/Driver/NullDriverTest.php +++ b/tests/Driver/NullDriverTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Driver/RedisDriverTest.php b/tests/Driver/RedisDriverTest.php index e000bb8..d550a29 100644 --- a/tests/Driver/RedisDriverTest.php +++ b/tests/Driver/RedisDriverTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests\Driver; diff --git a/tests/Friend.php b/tests/Friend.php index 43a3c78..c91007e 100644 --- a/tests/Friend.php +++ b/tests/Friend.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/ItemCollectionTest.php b/tests/ItemCollectionTest.php index 652db62..d8f82c2 100644 --- a/tests/ItemCollectionTest.php +++ b/tests/ItemCollectionTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/ItemTest.php b/tests/ItemTest.php index daa8f3f..1ac61bb 100644 --- a/tests/ItemTest.php +++ b/tests/ItemTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/PoolTest.php b/tests/PoolTest.php index 3327a37..a9b62fc 100644 --- a/tests/PoolTest.php +++ b/tests/PoolTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/TellerTest.php b/tests/TellerTest.php index 1e751ef..b10bbd1 100644 --- a/tests/TellerTest.php +++ b/tests/TellerTest.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests; diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 55612d4..cc0b3fd 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -8,9 +8,9 @@ * * @package Banker * @author Timothy J. Warren - * @copyright 2016 - 2021 Timothy J. Warren + * @copyright 2016 - 2023 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License - * @version 4.0.0 + * @version 4.1.0 * @link https://git.timshomepage.net/timw4mail/banker */ namespace Aviat\Banker\Tests;