Skip to content

Commit 54ad221

Browse files
committed
bump uuid_v4 and uuid_v7 plugin maturity to stable
1 parent e2bf227 commit 54ad221

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

plugin/type_uuid/mysql-test/type_uuid/func_uuid_v4_plugin.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ PLUGIN_TYPE FUNCTION
2525
PLUGIN_AUTHOR Stefano Petrilli
2626
PLUGIN_DESCRIPTION Function UUID_v4()
2727
PLUGIN_LICENSE GPL
28-
PLUGIN_MATURITY Experimental
29-
PLUGIN_AUTH_VERSION 1.0
28+
PLUGIN_MATURITY Stable
29+
PLUGIN_AUTH_VERSION 1.0.1
3030
# End of 11.7 tests

plugin/type_uuid/mysql-test/type_uuid/func_uuid_v7_plugin.result

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ PLUGIN_TYPE FUNCTION
2828
PLUGIN_AUTHOR Stefano Petrilli
2929
PLUGIN_DESCRIPTION Function UUID_v7()
3030
PLUGIN_LICENSE GPL
31-
PLUGIN_MATURITY Experimental
32-
PLUGIN_AUTH_VERSION 1.0
31+
PLUGIN_MATURITY Stable
32+
PLUGIN_AUTH_VERSION 1.0.1
3333
#
3434
# End of 11.7 tests
3535
#

plugin/type_uuid/plugin.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,8 +284,8 @@ maria_declare_plugin(type_uuid)
284284
0x0100, // Numeric version 0xAABB means AA.BB version
285285
NULL, // Status variables
286286
NULL, // System variables
287-
"1.0", // String version representation
288-
MariaDB_PLUGIN_MATURITY_EXPERIMENTAL// Maturity(see include/mysql/plugin.h)*/
287+
"1.0.1", // String version representation
288+
MariaDB_PLUGIN_MATURITY_STABLE// Maturity(see include/mysql/plugin.h)*/
289289
},
290290
{
291291
MariaDB_FUNCTION_PLUGIN, // the plugin type (see include/mysql/plugin.h)
@@ -299,7 +299,7 @@ maria_declare_plugin(type_uuid)
299299
0x0100, // Numeric version 0xAABB means AA.BB version
300300
NULL, // Status variables
301301
NULL, // System variables
302-
"1.0", // String version representation
303-
MariaDB_PLUGIN_MATURITY_EXPERIMENTAL// Maturity(see include/mysql/plugin.h)*/
302+
"1.0.1", // String version representation
303+
MariaDB_PLUGIN_MATURITY_STABLE// Maturity(see include/mysql/plugin.h)*/
304304
}
305305
maria_declare_plugin_end;

0 commit comments

Comments
 (0)