diff --git a/plugin.php b/plugin.php index aeac38a..96cdef0 100644 --- a/plugin.php +++ b/plugin.php @@ -4,7 +4,7 @@ * Plugin URI: https://theeventscalendar.com/extensions/remove-past-events * GitHub Plugin URI: https://github.com/mt-support/tec-labs-remove-past-events * Description: Additional frequencies to remove past events. - * Version: 1.2.0 + * Version: 1.2.1 * Author: The Events Calendar * Author URI: https://evnt.is/1971 * License: GPL version 3 or any later version diff --git a/readme.txt b/readme.txt index 242e1c7..c54507d 100644 --- a/readme.txt +++ b/readme.txt @@ -32,7 +32,7 @@ We're always interested in your feedback and our [Help Desk](https://support.the == Changelog == -= [TBD] TBD = += [1.2.1] 2023-12-11 = * Fix - Added compatibility to The Events Calendar 6.0 data structure. [ECP-1604] diff --git a/src/Tec/Plugin.php b/src/Tec/Plugin.php index 6e783aa..abc1fa0 100644 --- a/src/Tec/Plugin.php +++ b/src/Tec/Plugin.php @@ -26,7 +26,7 @@ class Plugin extends Service_Provider { * * @var string */ - const VERSION = '1.2.0'; + const VERSION = '1.2.1'; /** * Stores the base slug for the plugin. @@ -128,7 +128,7 @@ protected function register_plugin_dependencies() { /** * Adjusting the dropdown options for trashing and deleting past events. * - * @since TBD Changing option values to a 'frequency|interval' format. + * @since 1.2.1 Changing option values to a 'frequency|interval' format. * * @param array $fields The array of option values. * diff --git a/src/Tec/Plugin_Register.php b/src/Tec/Plugin_Register.php index 8f4089f..5ff5d1e 100644 --- a/src/Tec/Plugin_Register.php +++ b/src/Tec/Plugin_Register.php @@ -26,7 +26,7 @@ class Plugin_Register extends Abstract_Plugin_Register { protected $main_class = Plugin::class; protected $dependencies = [ 'parent-dependencies' => [ - 'Tribe__Events__Main' => '6.2.9', + 'Tribe__Events__Main' => '6.2.9-dev', ], ]; }