diff options
author | Alexey Botchkov <holyfoot@askmonty.org> | 2018-08-30 15:57:22 +0400 |
---|---|---|
committer | Alexey Botchkov <holyfoot@askmonty.org> | 2018-08-30 15:57:22 +0400 |
commit | c933970974bd5a30fb824c1df64c68f1bc403389 (patch) | |
tree | 2620982123e5ad49db99479835cbeae2830247f5 | |
parent | 2ad51a0bd8380fba3d03a4cebd43860329b7fbaa (diff) | |
download | mariadb-git-c933970974bd5a30fb824c1df64c68f1bc403389.tar.gz |
MDEV-16665 ed25519 describes itself as 1.0-alpha even though it's not alpha.
Plugin version name fixed.
-rw-r--r-- | mysql-test/suite/plugins/r/auth_ed25519.result | 2 | ||||
-rw-r--r-- | plugin/auth_ed25519/server_ed25519.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/suite/plugins/r/auth_ed25519.result b/mysql-test/suite/plugins/r/auth_ed25519.result index 371d20befeb..240e226f594 100644 --- a/mysql-test/suite/plugins/r/auth_ed25519.result +++ b/mysql-test/suite/plugins/r/auth_ed25519.result @@ -33,7 +33,7 @@ PLUGIN_DESCRIPTION Elliptic curve ED25519 based authentication PLUGIN_LICENSE GPL LOAD_OPTION ON PLUGIN_MATURITY Stable -PLUGIN_AUTH_VERSION 1.0-alpha +PLUGIN_AUTH_VERSION 1.0 create user test1@localhost identified via ed25519 using 'ZIgUREUg5PVgQ6LskhXmO+eZLS0nC8be6HPjYWR4YJY'; show grants for test1@localhost; Grants for test1@localhost diff --git a/plugin/auth_ed25519/server_ed25519.c b/plugin/auth_ed25519/server_ed25519.c index 7720a0a4074..8e442e56804 100644 --- a/plugin/auth_ed25519/server_ed25519.c +++ b/plugin/auth_ed25519/server_ed25519.c @@ -101,7 +101,7 @@ maria_declare_plugin(ed25519) 0x0100, NULL, NULL, - "1.0-alpha", + "1.0", MariaDB_PLUGIN_MATURITY_STABLE } maria_declare_plugin_end; |