diff --git a/package-lock.json b/package-lock.json index 4c5d362..edc4832 100644 --- a/package-lock.json +++ b/package-lock.json @@ -30096,4 +30096,4 @@ } } } -} \ No newline at end of file +} diff --git a/package.json b/package.json index e595532..466ea5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wpcomsp-simple-events", - "version": "2.0.6", + "version": "2.0.7", "description": "A simple Gutenberg-first event management plugin that integrates with WooCommerce Box Office.", "author": { "name": "WordPress.com Special Projects Team", @@ -65,4 +65,4 @@ "dependencies": { "ajv": "^8.17.1" } -} +} \ No newline at end of file diff --git a/plugin.php b/plugin.php index 9f903ed..5f51fc4 100644 --- a/plugin.php +++ b/plugin.php @@ -3,7 +3,7 @@ * Simple Events Plugin bootstrap file. * * @since 1.0.0 - * @version 2.0.6 + * @version 2.0.7 * @author WordPress.com Special Projects * @license GPL-3.0-or-later * @@ -13,7 +13,7 @@ * Description: Event management frontend for WooCommerce Box Office. * Requires at least: 6.2 * Tested up to: 6.4 - * Version: 2.0.6 + * Version: 2.0.7 * Requires PHP: 8.0 * Author: WordPress.com Special Projects * Author URI: https://wpspecialprojects.wordpress.com @@ -31,7 +31,7 @@ function_exists( 'get_plugin_data' ) || require_once ABSPATH . 'wp-admin/includes/plugin.php'; define( 'SE_METADATA', get_plugin_data( __FILE__, false, false ) ); -define( 'SE_VERSION', '2.0.5' ); +define( 'SE_VERSION', '2.0.7' ); define( 'SE_BASENAME', plugin_basename( __FILE__ ) ); define( 'SE_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); define( 'SE_PLUGIN_URL', untrailingslashit( plugin_dir_url( __FILE__ ) ) ); diff --git a/simple-events.zip b/simple-events.zip deleted file mode 100644 index a5153f8..0000000 Binary files a/simple-events.zip and /dev/null differ diff --git a/src/classes/class-date-display-formatter.php b/src/classes/class-date-display-formatter.php index c45fe97..1f07a5a 100644 --- a/src/classes/class-date-display-formatter.php +++ b/src/classes/class-date-display-formatter.php @@ -446,7 +446,6 @@ private function render_date_list_grouped( array $event_dates, string $existing_ // Iterate over each group, and break them down to the starting month. foreach ( $groups as $group ) { // Create the time label. - $time_label = $group[0]['all_day'] ? SE_Settings::get_all_day_message() : null; if ( ! $time_label ) {