diff --git a/jetpack b/jetpack index 75a307fd8f..de82ddd982 160000 --- a/jetpack +++ b/jetpack @@ -1 +1 @@ -Subproject commit 75a307fd8ff9b18de1f809f5793b0250532a2ce1 +Subproject commit de82ddd982f549445652028e1d8b60915604e622 diff --git a/jetpack.php b/jetpack.php index 14660d8326..2b979c034e 100644 --- a/jetpack.php +++ b/jetpack.php @@ -5,7 +5,7 @@ * Plugin URI: https://jetpack.com * Description: Security, performance, and marketing tools made by WordPress experts. Jetpack keeps your site protected so you can focus on more important things. * Author: Automattic - * Version: 12.4 + * Version: 12.5 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -31,7 +31,7 @@ function vip_default_jetpack_version() { return '12.0'; } else { // WordPress 6.1 and newer. - return '12.4'; + return '12.5'; } } diff --git a/tests/test-jetpack.php b/tests/test-jetpack.php index b20ed48235..629ac6cbce 100644 --- a/tests/test-jetpack.php +++ b/tests/test-jetpack.php @@ -7,7 +7,7 @@ public function test__vip_default_jetpack_version() { global $wp_version; $saved_wp_version = $wp_version; - $latest = '12.4'; + $latest = '12.5'; $versions_map = [ // WordPress version => Jetpack version @@ -15,8 +15,10 @@ public function test__vip_default_jetpack_version() { '5.9' => '11.4', '5.9.5' => '11.4', '6.0' => '12.0', + '6.1' => $latest, '6.2' => $latest, - '6.2.1' => $latest, + '6.3' => $latest, + '6.3.1' => $latest, ]; foreach ( $versions_map as $wordpress_version => $jetpack_version ) {