diff options
| -rw-r--r-- | lib/public_key/src/public_key.appup.src | 74 | ||||
| -rw-r--r-- | lib/public_key/vsn.mk | 2 | 
2 files changed, 11 insertions, 65 deletions
diff --git a/lib/public_key/src/public_key.appup.src b/lib/public_key/src/public_key.appup.src index 4986801dad..2945fb1213 100644 --- a/lib/public_key/src/public_key.appup.src +++ b/lib/public_key/src/public_key.appup.src @@ -1,70 +1,16 @@  %% -*- erlang -*-  {"%VSN%",   [ - {"0.11", -   [ -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_pem, soft, soft_purge, soft_purge, []}, -    {add_module, pubkey_ssh, soft, soft_purge, soft_purge}, -    {update, pubkey_cert, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert_records, soft, soft_purge, soft_purge, []} -   ] -  }, - - {"0.10", -   [ -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_pem, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert_records, soft, soft_purge, soft_purge, []} -   ] -  }, - {"0.9", -   [ -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert, soft, soft_purge, soft_purge, []} -   ] -  }, -  {"0.8", -   [ -    {update, 'OTP-PUB-KEY', soft, soft_purge, soft_purge, []}, -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_pem, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert_records, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert, soft, soft_purge, soft_purge, []} -   ] -  } +  {"0.13", [{restart_application, public_key}]}, +  {"0.11", [{restart_application, public_key}]}, +  {"0.10", [{restart_application, public_key}]}, +  {"0.9",  [{restart_application, public_key}]}, +  {"0.8",  [{restart_application, public_key}]}   ],   [ -  {"0.11", -   [ -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_pem, soft, soft_purge, soft_purge, []}, -    {delete_module, pubkey_ssh, soft, soft_purge, soft_purge}, -    {update, pubkey_cert, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert_records, soft, soft_purge, soft_purge, []} -   ] -  }, - -  {"0.10", -   [ -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_pem, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert_records, soft, soft_purge, soft_purge, []} -   ] -  }, -  {"0.9", -   [ -     {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert, soft, soft_purge, soft_purge, []} -   ] -  }, -  {"0.8", -   [ -    {update, 'OTP-PUB-KEY', soft, soft_purge, soft_purge, []}, -    {update, public_key, soft, soft_purge, soft_purge, []}, -    {update, pubkey_pem, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert_records, soft, soft_purge, soft_purge, []}, -    {update, pubkey_cert, soft, soft_purge, soft_purge, []} -   ] -  } +  {"0.13", [{restart_application, public_key}]}, +  {"0.11", [{restart_application, public_key}]}, +  {"0.10", [{restart_application, public_key}]}, +  {"0.9",  [{restart_application, public_key}]}, +  {"0.8",  [{restart_application, public_key}]}   ]}. diff --git a/lib/public_key/vsn.mk b/lib/public_key/vsn.mk index 66ac78a65d..d8f811bf25 100644 --- a/lib/public_key/vsn.mk +++ b/lib/public_key/vsn.mk @@ -1 +1 @@ -PUBLIC_KEY_VSN = 0.13 +PUBLIC_KEY_VSN = 0.14  | 
