diff --git a/jetpack b/jetpack index 022fbe389e..7df2fa01c3 160000 --- a/jetpack +++ b/jetpack @@ -1 +1 @@ -Subproject commit 022fbe389e182e8b29c34e050a9c30472acff0b3 +Subproject commit 7df2fa01c34dac9638d383cb66c7b535f19b8ad8 diff --git a/jetpack.php b/jetpack.php index 1acffdd384..cd81a49c1e 100644 --- a/jetpack.php +++ b/jetpack.php @@ -4,7 +4,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.9 + * Version: 13.0 * Author URI: https://jetpack.com * License: GPL2+ * Text Domain: jetpack @@ -36,7 +36,7 @@ function vip_default_jetpack_version() { return '12.8'; } else { // WordPress 6.3 and newer. - return '12.9'; + return '13.0'; } } diff --git a/tests/test-jetpack.php b/tests/test-jetpack.php index cffefe06cf..091c4de310 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.9'; + $latest = '13.0'; $versions_map = [ // WordPress version => Jetpack version @@ -18,7 +18,7 @@ public function test__vip_default_jetpack_version() { '6.1' => '12.5', '6.2' => '12.8', '6.3' => $latest, - '6.3.1' => $latest, + '6.4' => $latest, ]; foreach ( $versions_map as $wordpress_version => $jetpack_version ) {