diff --git a/CHANGELOG.md b/CHANGELOG.md index a673917..d632113 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.1](https://github.com/10up/wp_mock/compare/1.0.0...1.0.1) - 2024-01-04 +### Changed +- Updated `WP_Mock::expectHookNotAdded()` with new params +- Updated PHP dependencies to ensure compatibility with PHP 8.3 + ## [1.0.0](https://github.com/10up/wp_mock/compare/0.5.0...1.0.0) - 2023-07-24 ### Added - Added and documented return types in codebase diff --git a/LICENSE.md b/LICENSE.md index ae711ec..d03f9ec 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,6 +1,6 @@ WP_Mock - WordPress API Mocking Framework -Copyright 2013-2023 by the contributors +Copyright 2013-2024 by the contributors Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/composer.json b/composer.json index aebc29d..38108df 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,6 @@ "name": "10up/wp_mock", "description": "A mocking library to take the pain out of unit testing for WordPress", "license": "BSD-3-Clause", - "version": "1.0.0", "prefer-stable": true, "require": { "php": ">=7.4 < 9", diff --git a/php/WP_Mock.php b/php/WP_Mock.php index 3df1eff..49ef1f3 100644 --- a/php/WP_Mock.php +++ b/php/WP_Mock.php @@ -2,7 +2,7 @@ /** * @package WP_Mock - * @copyright 2013-2023 by the contributors + * @copyright 2013-2024 by the contributors * @license BSD-3-Clause * @see ../LICENSE.md */