We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f30b82b commit c33a3d6Copy full SHA for c33a3d6
inc/Database_Upgrader.php
@@ -41,6 +41,7 @@ public function init() {
41
'2.0.5' => 'upgrade_2_0_5',
42
'2.0.6' => 'upgrade_2_0_6',
43
'2.1.0' => 'upgrade_2_1',
44
+ '2.2.1' => 'upgrade_2_2_1',
45
);
46
47
$version = get_option( self::OPTION, '0.0.0' );
@@ -195,4 +196,14 @@ protected function upgrade_2_1() {
195
196
// Refresh templates library.
197
Remote::get_instance()->get_templates_info( true );
198
}
199
+
200
+ /**
201
+ * Migration for v2.2.1
202
+ *
203
+ * @return void
204
+ */
205
+ protected function upgrade_2_2_1() {
206
+ // Refresh templates library.
207
+ Remote::get_instance()->get_templates_info( true );
208
+ }
209
0 commit comments